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

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundChatPreview {
    pub query_id: i32,
    pub preview: Option<FormattedText>,
}