egui/epaint/src/text/mod.rs
2021-01-17 12:24:13 +01:00

11 lines
216 B
Rust

//! Everything related to text, fonts, text layout, cursors etc.
pub mod cursor;
mod font;
mod fonts;
mod galley;
pub use {
fonts::{FontDefinitions, FontFamily, Fonts, TextStyle},
galley::{Galley, Row},
};