chunkedge_protocol/packets/play/
set_chunk_cache_center_s2c.rs

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