chunkedge_protocol/packets/play/
block_changed_ack_s2c.rs

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