valence_protocol/packets/play/
creative_inventory_action_c2s.rs
1use crate::{Decode, Encode, ItemStack, Packet};
2
3#[derive(Clone, Debug, Encode, Decode, Packet)]
4pub struct CreativeInventoryActionC2s {
5 pub slot: i16,
6 pub clicked_item: ItemStack,
7}