aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_ping_packet.rs
blob: 82de4fab9f5507cb5ed1f8e2a2f5e51afe1ff4a0 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::McBuf;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundPingPacket {
    #[var]
    pub id: u32,
}