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