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

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundTickingStep {
    #[var]
    pub tick_steps: u32,
}