aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_chat_preview_packet.rs
blob: 32711d4534780776a07a60a7c80c9bc118220580 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::McBuf;
use packet_macros::GamePacket;

#[derive(Clone, Debug, McBuf, GamePacket)]
pub struct ServerboundChatPreviewPacket {
    pub query_id: i32,
    pub query: String,
}