egui/emigui/src/lib.rs

29 lines
468 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;
2019-01-12 22:07:30 +00:00
mod emigui;
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;
mod texture_atlas;
2018-12-30 20:08:29 +00:00
pub mod types;
pub mod widgets;
2018-12-30 20:08:29 +00:00
pub use crate::{
2019-01-12 22:07:30 +00:00
emigui::Emigui,
2019-01-05 20:23:53 +00:00
font::Font,
2019-01-04 13:14:32 +00:00
layout::LayoutOptions,
2019-01-06 15:34:01 +00:00
layout::Region,
2019-01-04 13:14:32 +00:00
painter::{Frame, Painter, Vertex},
style::Style,
2019-01-12 23:19:53 +00:00
texture_atlas::TextureAtlas,
2019-01-04 13:14:32 +00:00
types::RawInput,
2018-12-30 20:08:29 +00:00
};