aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_set_border_center.rs
blob: d9663920b395b87ba75ab18253f668c41d96db87 (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 ClientboundSetBorderCenter {
    pub new_center_x: f64,
    pub new_center_z: f64,
}