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

#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)]
pub struct ClientboundPing {
    pub id: u32,
}