chunkedge_protocol/packets/play/
chunk_batch_received_c2s.rs

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