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