contextless gaming

This commit is contained in:
iris committed 2025-08-25 19:21:39 -04:00
1 parent e8b255c8f9
commit e9037cdc14
6 files changed
+27 -46

No files matched your search

+3 -3
View File
@@ -2,9 +2,9 @@ mod id;
mod math;
mod refcount;
pub use id::*;
pub use math::*;
pub use refcount::*;
pub(crate) use id::*;
pub(crate) use math::*;
pub(crate) use refcount::*;
pub type HashMap<K, V> = std::collections::HashMap<K, V>;
pub type HashSet<K> = std::collections::HashSet<K>;