chunkedge_protocol/packets/play/
swing_c2s.rs

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