egui/emigui/src/lib.rs

49 lines
843 B
Rust

#![deny(warnings)]
extern crate rusttype;
extern crate serde;
#[macro_use] // TODO: get rid of this
extern crate serde_derive;
mod collapsing_header;
pub mod color;
mod context;
mod emigui;
pub mod example_app;
mod font;
mod fonts;
mod id;
mod layers;
mod layout;
pub mod math;
mod memory;
pub mod mesher;
mod region;
mod scroll_area;
mod style;
mod texture_atlas;
mod types;
pub mod widgets;
mod window;
pub use {
crate::emigui::Emigui,
collapsing_header::CollapsingHeader,
color::Color,
context::Context,
fonts::{FontDefinitions, Fonts, TextStyle},
id::Id,
layers::*,
layout::{Align, GuiResponse},
math::*,
memory::Memory,
mesher::{Mesh, PaintBatches, Vertex},
region::Region,
scroll_area::ScrollArea,
style::Style,
texture_atlas::Texture,
types::*,
window::Window,
};