aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_chunk_batch_finished.rs
blob: f527b47fe7135e4fb4f1138340a51986a7875913 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundChunkBatchFinished {
    #[var]
    pub batch_size: u32,
}