valence_protocol/packets/play/
world_border_warning_blocks_changed_s2c.rs
1use crate::{Decode, Encode, Packet, VarInt};
2
3#[derive(Clone, Debug, Encode, Decode, Packet)]
4pub struct WorldBorderWarningBlocksChangedS2c {
5 pub warning_blocks: VarInt,
6}