chunkedge_protocol/packets/play/
set_held_slot_s2c.rs

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