1
2
3
4
5
6
7
8
9
//! Text rendering.

pub use crate::text::font::Font;
pub use crate::text::glyph::Glyph;
pub use crate::text::renderer::TextRenderer;

mod font;
mod glyph;
mod renderer;