diff options
Diffstat (limited to 'minecraft-chat/src/splitter.rs')
| -rw-r--r-- | minecraft-chat/src/splitter.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/minecraft-chat/src/splitter.rs b/minecraft-chat/src/splitter.rs new file mode 100644 index 00000000..812c3365 --- /dev/null +++ b/minecraft-chat/src/splitter.rs @@ -0,0 +1,7 @@ +//! Used for splitting text +//! This includes wrapping long lines and applying legacy color formats. +//! I'm not sure why applying legacy color formats is done here but that's the way Minecraft does it. + +use crate::component::Component; + +fn split_lines(component: Component) {} |
