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:
26
emigui/src/lib.rs
Normal file
26
emigui/src/lib.rs
Normal 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,
|
||||
};
|
||||
Reference in New Issue
Block a user