aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_chat_preview_packet.rs
blob: 75bf0cf7de79c9d56bf6e7550130ec4ae6c87dc4 (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 ClientboundChatPreviewPacket {
    pub query_id: i32,
    pub preview: Option<Component>,
}