aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_keep_alive.rs
blob: ba58c7118fea4eaef9d374d2b7f946396b4da9b2 (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 ClientboundKeepAlive {
    pub id: u64,
}