19 lines
327 B
Rust
19 lines
327 B
Rust
mod arena;
|
|
mod change;
|
|
mod id;
|
|
mod math;
|
|
mod refcount;
|
|
mod vec2;
|
|
mod handle;
|
|
|
|
pub(crate) use arena::*;
|
|
pub use change::*;
|
|
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>;
|