chunkedge_protocol/packets/play/
set_chunk_cache_radius_s2c.rs

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