blob: 1e6623c07011d241e5a7c02dbd3958ccd1f9d0b2 (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundContainerClose {
#[var]
pub container_id: i32,
}
|