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

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