mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
13 lines
291 B
Rust
Executable file
13 lines
291 B
Rust
Executable file
//! Things for working with Minecraft chat messages.
|
|
//! This was inspired by Minecraft and prismarine-chat.
|
|
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
|
|
pub mod base_component;
|
|
mod component;
|
|
pub mod style;
|
|
pub mod text_component;
|
|
pub mod translatable_component;
|
|
|
|
pub use component::Component;
|