1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright Rob Gage 2025 mod character; mod text; mod parsers; mod text_input; use character::Character; use text_input::TextInput; pub mod prelude { pub use crate::{ parsers::*, text::Text, }; } pub use prelude::*;