aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_open_screen.rs
blob: 4ba717250836bfd592e57a47057a1a948dfb7808 (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: u32,
    pub menu_type: azalea_registry::MenuKind,
    pub title: FormattedText,
}