1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-27 15:13:12 -04:00
Files
egui/emigui/src/lib.rs
2019-04-25 18:07:36 +02:00

31 lines
507 B
Rust

#![deny(warnings)]
extern crate rusttype;
extern crate serde;
#[macro_use] // TODO: get rid of this
extern crate serde_derive;
pub mod color;
mod emigui;
mod font;
mod fonts;
mod layout;
pub mod math;
pub mod mesher;
mod style;
mod texture_atlas;
pub mod types;
pub mod widgets;
pub use crate::{
color::Color,
emigui::Emigui,
fonts::{FontSizes, Fonts, TextStyle},
layout::{Align, Region},
mesher::{Mesh, Vertex},
style::Style,
texture_atlas::Texture,
types::RawInput,
};