Compilation fix
This commit is contained in:
parent
f4f03d49eb
commit
dba42b1ada
|
|
@ -18,7 +18,7 @@ mod texture_atlas;
|
||||||
mod types;
|
mod types;
|
||||||
pub mod widgets;
|
pub mod widgets;
|
||||||
|
|
||||||
pub use crate::{
|
pub use {
|
||||||
color::Color,
|
color::Color,
|
||||||
emigui::Emigui,
|
emigui::Emigui,
|
||||||
fonts::{FontDefinitions, Fonts, TextStyle},
|
fonts::{FontDefinitions, Fonts, TextStyle},
|
||||||
|
|
@ -27,6 +27,5 @@ pub use crate::{
|
||||||
mesher::{Mesh, Vertex},
|
mesher::{Mesh, Vertex},
|
||||||
style::Style,
|
style::Style,
|
||||||
texture_atlas::Texture,
|
texture_atlas::Texture,
|
||||||
types::RawInput,
|
|
||||||
types::*,
|
types::*,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
use emigui::{color::*, label, math::*, types::*, widgets::*, Align, Region, TextStyle};
|
use emigui::{color::*, label, math::*, widgets::*, Align, Outline, PaintCmd, Region, TextStyle};
|
||||||
|
|
||||||
pub fn show_value_gui(value: &mut usize, gui: &mut Region) {
|
pub fn show_value_gui(value: &mut usize, gui: &mut Region) {
|
||||||
gui.add(Slider::usize(value, 1, 1000));
|
gui.add(Slider::usize(value, 1, 1000));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue