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

Move Memory and Region to own files

This commit is contained in:
Emil Ernerfeldt
2020-04-17 15:29:48 +02:00
parent 1d3836ba80
commit de76cb6190
6 changed files with 504 additions and 521 deletions

View File

@@ -14,7 +14,9 @@ mod fonts;
mod layers;
mod layout;
pub mod math;
mod memory;
pub mod mesher;
mod region;
mod style;
mod texture_atlas;
mod types;
@@ -26,9 +28,11 @@ pub use {
color::Color,
fonts::{FontDefinitions, Fonts, TextStyle},
layers::*,
layout::{Align, Id, Region},
layout::{Align, Id},
math::*,
memory::Memory,
mesher::{Mesh, Vertex},
region::Region,
style::Style,
texture_atlas::Texture,
types::*,