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

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