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

Add rudimentary support for gui windows that you can move around

This commit is contained in:
Emil Ernerfeldt
2020-04-17 14:26:36 +02:00
parent b26359d383
commit 1d3836ba80
10 changed files with 297 additions and 79 deletions

View File

@@ -11,6 +11,7 @@ mod emigui;
pub mod example_app;
mod font;
mod fonts;
mod layers;
mod layout;
pub mod math;
pub mod mesher;
@@ -18,15 +19,18 @@ mod style;
mod texture_atlas;
mod types;
pub mod widgets;
mod window;
pub use {
crate::emigui::Emigui,
color::Color,
fonts::{FontDefinitions, Fonts, TextStyle},
layout::{Align, Region},
layers::*,
layout::{Align, Id, Region},
math::*,
mesher::{Mesh, Vertex},
style::Style,
texture_atlas::Texture,
types::*,
window::Window,
};