1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00
azalea/azalea-chat/src/lib.rs
2022-10-30 15:28:19 -05:00

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;