aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_chat_ack.rs
blob: d4b6efd6701cfb403d1df1c9c1b7f72345f7f02d (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundGamePacket;

#[derive(Clone, Debug, AzBuf, ServerboundGamePacket)]
pub struct ServerboundChatAck {
    #[var]
    pub messages: u32,
}