egui/emgui/src/lib.rs

17 lines
279 B
Rust
Raw Normal View History

2018-12-30 20:08:29 +00:00
#![deny(warnings)]
extern crate serde;
#[macro_use] // TODO: get rid of this
extern crate serde_derive;
mod emgui;
mod layout;
pub mod math;
mod style;
pub mod types;
pub use crate::{
emgui::Emgui, layout::Layout, layout::LayoutOptions, style::Style, types::RawInput,
};