1use chunkedge_binary::{Decode, Encode}; 2 3use crate::Packet; 4 5#[derive(Clone, Debug, Encode, Decode, Packet)] 6pub struct SetBorderCenterS2c { 7 pub x_pos: f64, 8 pub z_pos: f64, 9}