aboutsummaryrefslogtreecommitdiff
path: root/minecraft-chat/src/lib.rs
blob: 5e9f1e3afa0247074ad798daeeebb968b4092269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! 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;
pub mod component;
pub mod splitter;
pub mod style;
pub mod text_component;
pub mod translatable_component;