diff options
author | HampusM <hampus@hampusmat.com> | 2025-01-02 17:02:25 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-01-02 17:02:25 +0100 |
commit | 85ed89df486858984f0936086205efc23fd32d24 (patch) | |
tree | f0480c745b3980e0767ed79177d87188f8129514 /ecs/src/lib.rs | |
parent | 1f6685aa570eadc70342bd1c62f5f9ff451afcb2 (diff) |
refactor(ecs): make component::Sequence return metadata as array
Diffstat (limited to 'ecs/src/lib.rs')
-rw-r--r-- | ecs/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecs/src/lib.rs b/ecs/src/lib.rs index 43a00f1..ae5fd19 100644 --- a/ecs/src/lib.rs +++ b/ecs/src/lib.rs @@ -45,12 +45,12 @@ pub mod system; pub mod tuple; pub mod type_name; pub mod uid; +pub mod util; #[doc(hidden)] pub mod private; mod archetype; -mod util; pub use ecs_macros::{Component, Sole}; |