move widgets out of ui

This commit is contained in:
2025-09-21 17:51:10 -04:00
parent c1f0b16f20
commit 70d3027bfb
4 changed files with 122 additions and 118 deletions

View File

@@ -11,6 +11,7 @@ mod texture;
mod ui;
mod vec2;
mod widget;
mod widgets;
pub use color::*;
pub use id::*;
@@ -25,5 +26,6 @@ pub use texture::*;
pub use ui::*;
pub use vec2::*;
pub use widget::*;
pub use widgets::*;
pub type UiColor = Color<u8>;