1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

remove splitter

This commit is contained in:
mat 2021-12-10 21:59:21 +00:00
parent 2ceaea5148
commit 01a059c20c
2 changed files with 0 additions and 8 deletions

View file

@ -6,7 +6,6 @@ extern crate lazy_static;
pub mod base_component; pub mod base_component;
pub mod component; pub mod component;
pub mod splitter;
pub mod style; pub mod style;
pub mod text_component; pub mod text_component;
pub mod translatable_component; pub mod translatable_component;

View file

@ -1,7 +0,0 @@
//! 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) {}