1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 05:40:03 -04:00

Support multiple fonts

This commit is contained in:
Emil Ernerfeldt
2019-01-13 00:55:56 +01:00
parent 1b8a45a514
commit ca9333ec3e
13 changed files with 140 additions and 70 deletions

View File

@@ -8,6 +8,7 @@ extern crate serde_derive;
mod emigui;
mod font;
mod fonts;
mod layout;
pub mod math;
mod painter;
@@ -18,11 +19,10 @@ pub mod widgets;
pub use crate::{
emigui::Emigui,
font::Font,
fonts::TextStyle,
layout::LayoutOptions,
layout::Region,
painter::{Frame, Painter, Vertex},
style::Style,
texture_atlas::TextureAtlas,
types::RawInput,
};