mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
also start making the metadata use bevy_ecs but bevy_ecs doesn't let you query on Bundles so it's annoying
10 lines
331 B
Rust
10 lines
331 B
Rust
use super::clientbound_player_chat_packet::ChatTypeBound;
|
|
use azalea_buf::McBuf;
|
|
use azalea_chat::FormattedText;
|
|
use azalea_protocol_macros::ClientboundGamePacket;
|
|
|
|
#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
|
|
pub struct ClientboundDisguisedChatPacket {
|
|
pub message: FormattedText,
|
|
pub chat_type: ChatTypeBound,
|
|
}
|