1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
use super::color::Color; /// Create drawable text pub fn text(string: String, scale: f32, color: Color) -> Text { Text { string, scale, color, } } /// Drawable Text #[derive(Clone, Debug)] pub struct Text { pub string: String, pub scale: f32, pub color: Color, }