1
2
3
4
5
6
7
use crate::{Decode, Encode, ItemStack, Packet};

#[derive(Clone, Debug, Encode, Decode, Packet)]
pub struct CreativeInventoryActionC2s {
    pub slot: i16,
    pub clicked_item: ItemStack,
}