aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_system_chat_packet.rs
blob: 9fe03fb2648954b25aaaa3ab49ca57a1453a1d5f (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, PartialEq)]
pub struct ClientboundSystemChatPacket {
    pub content: Component,
    pub overlay: bool,
}