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

use super::c_player_chat::PackedMessageSignature;

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundDeleteChat {
    pub signature: PackedMessageSignature,
}