1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -04:00

Make Id a proper newtype

This commit is contained in:
Emil Ernerfeldt
2020-04-17 23:44:14 +02:00
parent 407df94945
commit 624e709a8f
7 changed files with 46 additions and 38 deletions

View File

@@ -12,6 +12,7 @@ mod emigui;
pub mod example_app;
mod font;
mod fonts;
mod id;
mod layers;
mod layout;
pub mod math;
@@ -29,8 +30,9 @@ pub use {
color::Color,
context::Context,
fonts::{FontDefinitions, Fonts, TextStyle},
id::Id,
layers::*,
layout::{Align, Id},
layout::Align,
math::*,
memory::Memory,
mesher::{Mesh, Vertex},