chunkedge_protocol/packets/play/
ticking_step_s2c.rs

1use chunkedge_binary::{Decode, Encode, VarInt};
2
3use crate::Packet;
4#[derive(Clone, Debug, Encode, Decode, Packet)]
5pub struct TickingStepS2c {
6    pub tick_steps: VarInt,
7}