blob: bba285807b696d5c67d081eb18068fd3de215baf (
plain)
1
2
3
4
5
6
7
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundGamePacket;
#[derive(AzBuf, Clone, Debug, PartialEq, ServerboundGamePacket)]
pub struct ServerboundChunkBatchReceived {
pub desired_chunks_per_tick: f32,
}
|