aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_chat_ack_packet.rs
blob: cfa9822faaf776b474c17db91ea5fc9c59f787aa (plain)
1
2
3
4
5
6
7
8
use crate::packets::game::clientbound_player_chat_packet::LastSeenMessagesUpdate;
use azalea_buf::McBuf;
use packet_macros::ServerboundGamePacket;

#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
pub struct ServerboundChatAckPacket {
    pub last_seen_messages: LastSeenMessagesUpdate,
}