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

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