chunkedge_protocol/packets/play/
bundle_item_selected_c2s.rs1use chunkedge_binary::{Decode, Encode, VarInt};
2
3use crate::Packet;
4
5#[derive(Clone, Debug, Encode, Decode, Packet)]
6pub struct BundleItemSelectedC2s {
7 pub slot_of_bundle: VarInt,
8 pub slot_in_bundle: VarInt,
9}