view + a bunch of fixes or smth idek man

This commit is contained in:
2025-12-08 00:12:11 -05:00
parent b66d4da5d7
commit 434e3c3af7
18 changed files with 253 additions and 109 deletions

View File

@@ -4,6 +4,7 @@ mod id;
mod math;
mod refcount;
mod vec2;
mod handle;
pub(crate) use arena::*;
pub use change::*;
@@ -11,6 +12,7 @@ pub(crate) use id::*;
pub(crate) use math::*;
pub(crate) use refcount::*;
pub use vec2::*;
pub use handle::*;
pub type HashMap<K, V> = fxhash::FxHashMap<K, V>;
pub type HashSet<K> = fxhash::FxHashSet<K>;