diff options
author | HampusM <hampus@hampusmat.com> | 2024-07-28 19:46:01 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-07-28 19:46:36 +0200 |
commit | 4313b5b0bfa79f4eaed25b65c5a7154c16074208 (patch) | |
tree | 0a68dd567a2bcf1e64f68b59d6b92a0dd33d7c63 /ecs/src/lib.rs | |
parent | 3cdef8ac2a96a91c9ab62a7ca49c128516c44efa (diff) |
refactor(ecs): move ArchetypeComponentsHash to archetype::Id
Diffstat (limited to 'ecs/src/lib.rs')
-rw-r--r-- | ecs/src/lib.rs | 2 |
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; |