break up into crates again
Some checks failed
/ build (push) Has been cancelled

This commit is contained in:
🪞👃🪞 2025-09-09 19:28:22 +03:00
parent 2c3bfe4ebb
commit ef81b085a0
106 changed files with 6866 additions and 7106 deletions

11
engine/engine_deps.rs Normal file
View file

@ -0,0 +1,11 @@
pub use ::tengri;
pub(crate) use ::{
tengri::{Usually, from},
atomic_float::AtomicF64,
std::{
cmp::Ord,
fmt::Debug,
ops::{Add, Sub, Mul, Div, Rem},
sync::{Arc, RwLock, atomic::{AtomicBool, AtomicUsize, Ordering::Relaxed}},
},
};