refactor out typemap

This commit is contained in:
2025-12-15 16:25:12 -05:00
parent 9d8ca8fa72
commit dc2be7f688
3 changed files with 64 additions and 18 deletions

View File

@@ -1,19 +1,21 @@
mod typemap;
mod arena;
mod borrow;
mod change;
mod slot;
mod id;
mod math;
mod refcount;
mod slot;
mod vec2;
pub use typemap::*;
pub use arena::*;
pub use borrow::*;
pub use change::*;
pub use slot::*;
pub use id::*;
pub use math::*;
pub use refcount::*;
pub use slot::*;
pub use vec2::*;
pub type HashMap<K, V> = fxhash::FxHashMap<K, V>;