blob: 852ce60fd5db2a81a3d1d191c598cb418b0d4335 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use azalea_buf::AzBuf;
use azalea_inventory::ItemStack;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundContainerSetContent {
pub container_id: i8,
#[var]
pub state_id: u32,
pub items: Vec<ItemStack>,
pub carried_item: ItemStack,
}
|