Initial commit

This commit is contained in:
Val Packett 2026-03-04 01:53:44 -03:00
commit 673af15cfd
13 changed files with 1927 additions and 0 deletions

7
src/util.rs Normal file
View file

@ -0,0 +1,7 @@
#[derive(Default, Debug, Clone)]
pub struct Bounds {
pub x: i32,
pub y: i32,
pub width: i32,
pub height: i32,
}