aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_system_chat_packet.rs
blob: a3319721d75ccb78af19bea20b31adcc8d7a9b2a (plain)
1
2
3
4
5
6
7
8
9
use azalea_buf::McBuf;
use azalea_chat::Component;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundSystemChatPacket {
    pub content: Component,
    pub overlay: bool,
}