summaryrefslogtreecommitdiff
path: root/ecs/src/lib.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-07-28 19:46:01 +0200
committerHampusM <hampus@hampusmat.com>2024-07-28 19:46:36 +0200
commit4313b5b0bfa79f4eaed25b65c5a7154c16074208 (patch)
tree0a68dd567a2bcf1e64f68b59d6b92a0dd33d7c63 /ecs/src/lib.rs
parent3cdef8ac2a96a91c9ab62a7ca49c128516c44efa (diff)
refactor(ecs): move ArchetypeComponentsHash to archetype::Id
Diffstat (limited to 'ecs/src/lib.rs')
-rw-r--r--ecs/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/ecs/src/lib.rs b/ecs/src/lib.rs
index a33d72e..95519c9 100644
--- a/ecs/src/lib.rs
+++ b/ecs/src/lib.rs
@@ -31,6 +31,8 @@ pub mod system;
pub mod tuple;
pub mod type_name;
+mod archetype;
+
pub use ecs_macros::{Component, Sole};
pub use crate::query::Query;