chunkedge_protocol/packets/play/
chunk_batch_finished_s2c.rs

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