blob: 2a80d1f15f8f6213858c24f2026445eac1b487f6 (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundSetSimulationDistance {
#[var]
pub simulation_distance: u32,
}
|