1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00
Files
egui/emigui/src/lib.rs
2019-01-16 09:28:43 -06:00

28 lines
438 B
Rust

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