small changes

This commit is contained in:
2025-12-16 18:38:06 -05:00
parent 71f3beaf94
commit ac9571b29f
10 changed files with 46 additions and 37 deletions

View File

@@ -10,11 +10,14 @@ use std::{
sync::mpsc::{Receiver, Sender, channel},
};
mod active;
mod draw_state;
mod painter;
mod size;
mod state;
pub use painter::{ActiveData, Painter};
pub use active::*;
pub use painter::Painter;
pub use size::*;
pub struct Ui<State> {