egui/epaint/src/text/mod.rs

12 lines
216 B
Rust
Raw Normal View History

2021-01-17 09:52:01 +00:00
//! Everything related to text, fonts, text layout, cursors etc.
2021-01-10 13:39:03 +00:00
pub mod cursor;
mod font;
mod fonts;
mod galley;
pub use {
fonts::{FontDefinitions, FontFamily, Fonts, TextStyle},
galley::{Galley, Row},
};