blob: a59da450deb41fdd13d2ba784d0f30aa1c32343f (
plain)
1
2
3
4
5
6
7
|
use azalea_buf::McBuf;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundContainerClosePacket {
pub container_id: u8,
}
|