egui/epaint/src/text/mod.rs

10 lines
150 B
Rust
Raw Normal View History

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},
};