chunkedge_protocol/packets/play/
set_border_size_s2c.rs

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