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