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;
|
2019-01-12 23:55:56 +00:00
|
|
|
mod fonts;
|
2018-12-30 20:08:29 +00:00
|
|
|
mod layout;
|
|
|
|
pub mod math;
|
2019-03-12 08:59:43 +00:00
|
|
|
pub mod mesher;
|
2018-12-30 20:08:29 +00:00
|
|
|
mod style;
|
2019-01-12 23:10:53 +00:00
|
|
|
mod texture_atlas;
|
2018-12-30 20:08:29 +00:00
|
|
|
pub mod types;
|
2019-01-10 09:55:38 +00:00
|
|
|
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-17 17:03:39 +00:00
|
|
|
fonts::{FontSizes, Fonts, TextStyle},
|
2019-03-11 14:39:54 +00:00
|
|
|
layout::{Align, Region},
|
2019-03-10 20:00:28 +00:00
|
|
|
mesher::{Mesh, Vertex},
|
2019-01-04 13:14:32 +00:00
|
|
|
style::Style,
|
2019-01-16 23:09:12 +00:00
|
|
|
texture_atlas::Texture,
|
2019-03-16 12:37:29 +00:00
|
|
|
types::{Color, RawInput},
|
2018-12-30 20:08:29 +00:00
|
|
|
};
|