Add Widget and Node

This commit is contained in:
Joscha 2024-03-07 13:58:10 +01:00
parent eb04b3fb50
commit bea5e03834
5 changed files with 102 additions and 1 deletions

View file

@ -1,5 +1,7 @@
pub use crate::{rect::*, vec2::*, view::*};
pub use crate::{node::*, rect::*, vec2::*, view::*, widget::*};
mod node;
mod rect;
mod vec2;
mod view;
mod widget;