1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 22:30:03 -04:00

Rename to Emigui

This commit is contained in:
Emil Ernerfeldt
2019-01-12 23:07:30 +01:00
parent 1e8a4d3906
commit 8963a99a09
26 changed files with 281 additions and 249 deletions

26
emigui/src/lib.rs Normal file
View File

@@ -0,0 +1,26 @@
#![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,
};