gui of canvas is from the canvas crate now

This commit is contained in:
Priec
2025-07-29 19:54:29 +02:00
parent a1fa42e204
commit aec5f80879
13 changed files with 370 additions and 53 deletions

7
canvas/src/gui/mod.rs Normal file
View File

@@ -0,0 +1,7 @@
// canvas/src/gui/mod.rs
pub mod theme;
pub mod render;
pub use theme::CanvasTheme;
pub use render::render_canvas;