mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 06:16:04 +00:00
* Remove lazy_static in azalea-chat * replace lazy_static with once_cell everywhere * fix * fix import * ignore a clippy warning in shape codegen
10 lines
251 B
Rust
Executable file
10 lines
251 B
Rust
Executable file
//! Things for working with Minecraft chat messages.
|
|
//! This was inspired by Minecraft and prismarine-chat.
|
|
|
|
pub mod base_component;
|
|
mod component;
|
|
pub mod style;
|
|
pub mod text_component;
|
|
pub mod translatable_component;
|
|
|
|
pub use component::Component;
|