26 lines
416 B
Rust
26 lines
416 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 layout;
|
|
pub mod math;
|
|
mod painter;
|
|
mod style;
|
|
pub mod types;
|
|
pub mod widgets;
|
|
|
|
pub use crate::{
|
|
emigui::Emigui,
|
|
font::Font,
|
|
layout::LayoutOptions,
|
|
layout::Region,
|
|
painter::{Frame, Painter, Vertex},
|
|
style::Style,
|
|
types::RawInput,
|
|
};
|