egui/emgui/src/lib.rs

25 lines
380 B
Rust
Raw Normal View History

2018-12-30 20:08:29 +00:00
#![deny(warnings)]
2019-01-04 13:14:32 +00:00
extern crate rusttype;
2018-12-30 20:08:29 +00:00
extern crate serde;
#[macro_use] // TODO: get rid of this
extern crate serde_derive;
mod emgui;
2019-01-04 13:14:32 +00:00
mod font;
2018-12-30 20:08:29 +00:00
mod layout;
pub mod math;
2019-01-04 13:14:32 +00:00
mod painter;
2018-12-30 20:08:29 +00:00
mod style;
pub mod types;
pub use crate::{
2019-01-04 13:14:32 +00:00
emgui::Emgui,
layout::Layout,
layout::LayoutOptions,
painter::{Frame, Painter, Vertex},
style::Style,
types::RawInput,
2018-12-30 20:08:29 +00:00
};