28 lines
470 B
Rust
28 lines
470 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::{FontSizes, Fonts, TextStyle},
|
|
layout::{Align, Region},
|
|
mesher::{Mesh, Vertex},
|
|
style::Style,
|
|
texture_atlas::Texture,
|
|
types::RawInput,
|
|
};
|