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