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

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