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

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundSetChunkCacheCenter {
    #[var]
    pub x: i32,
    #[var]
    pub z: i32,
}