o3 refactor

This commit is contained in:
reo 2025-07-22 21:12:05 +03:00
parent 341d531db3
commit 049f522bb1
19 changed files with 508 additions and 214 deletions

View file

@ -4,5 +4,5 @@ version = "0.1.0"
edition = "2021"
[dependencies]
hecs = { version = "0.10.5", features = ["macros"] }
glam = "0.30.4"
hecs = "0.10.5"

View file

@ -13,5 +13,7 @@ impl Transform {
}
}
#[derive(Clone)]
pub struct ModelHandle(pub usize);
#[derive(Copy, Clone)]
pub struct ModelId(pub usize);
pub type ModelHandle = ModelId;