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