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