blob: 834802dd124862e5f76029fd5d823cfb92df9cd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use azalea_buf::AzBuf;
use azalea_chat::FormattedText;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundOpenScreen {
#[var]
pub container_id: i32,
pub menu_type: azalea_registry::MenuKind,
pub title: FormattedText,
}
|