blob: dfa75a5bdb6cfee124e8b6c7aa17611656d46a6d (
plain)
1
2
3
4
5
6
7
8
9
|
use azalea_chat::component::Component;
use packet_macros::{GamePacket, McBuf};
#[derive(Clone, Debug, McBuf, GamePacket)]
pub struct ClientboundSystemChatPacket {
pub content: Component,
#[var]
pub type_id: i32,
}
|