blob: 3815f5c512618d554f176d0ece87f31130064899 (
plain)
1
2
3
4
5
6
7
8
9
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundContainerSetData {
pub container_id: i8,
pub id: u16,
pub value: u16,
}
|