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