aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_command_suggestion_packet.rs
blob: b0d7d8e3b5ffd86277245149fef819ddc307d48f (plain)
1
2
3
4
5
6
7
8
9
use azalea_buf::McBuf;
use packet_macros::ServerboundGamePacket;

#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
pub struct ServerboundCommandSuggestionPacket {
    #[var]
    pub id: u32,
    pub command: String,
}