1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00
azalea/azalea-protocol/src/packets/game/c_delete_chat.rs
2024-11-27 02:12:48 +00:00

9 lines
260 B
Rust
Executable file

use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
use super::c_player_chat::PackedMessageSignature;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundDeleteChat {
pub signature: PackedMessageSignature,
}