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
9 lines
270 B
Rust
Executable file
9 lines
270 B
Rust
Executable file
use azalea_buf::McBuf;
|
|
use azalea_chat::FormattedText;
|
|
use azalea_protocol_macros::ClientboundGamePacket;
|
|
|
|
#[derive(Clone, Debug, McBuf, ClientboundGamePacket, PartialEq)]
|
|
pub struct ClientboundSystemChatPacket {
|
|
pub content: FormattedText,
|
|
pub overlay: bool,
|
|
}
|