blob: c546081c59e5f852b5377501caf9f1d326c465ae (
plain)
1
2
3
4
5
6
7
|
use azalea_buf::McBuf;
use azalea_protocol_macros::ServerboundStatusPacket;
#[derive(Clone, Debug, McBuf, ServerboundStatusPacket)]
pub struct ServerboundPingRequestPacket {
pub time: u64,
}
|