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