aboutsummaryrefslogtreecommitdiff
path: root/minecraft-chat/src/lib.rs
blob: 73485a3ec0827030372091107bfdbda51c3e4a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Things for working with Minecraft chat messages, inspired by the Minecraft source code and prismarine-chat.

pub mod base_component;
pub mod component;
pub mod mutable_component;
pub mod style;
pub mod text_component;
pub mod translatable_component;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}