blob: 6147867bffa54097488ef47f3e34ca0e052d04a9 (
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 ClientboundChunkBatchFinished {
#[var]
pub batch_size: u32,
}
|