blob: 812c3365f820e356417f69f53b62fc8f97e9e56d (
plain)
1
2
3
4
5
6
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) {}
|