senses are now bitflags

This commit is contained in:
iris committed 2025-08-25 22:36:38 -04:00
1 parent e9037cdc14
commit 9780724126
7 files changed
+150 -104

No files matched your search

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