diff options
author | HampusM <hampus@hampusmat.com> | 2024-04-10 20:39:52 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-04-10 20:39:52 +0200 |
commit | d5379b32d73e6a1074c7ccc127846f5c89fbbfbd (patch) | |
tree | 7b006a4053536d6e29e2fe9622bf1059d2d446c3 /ecs/src | |
parent | b3ecac00fc070883ced992708905eb6461c7aa9e (diff) |
feat(ecs): reexport Sole derive macro
Diffstat (limited to 'ecs/src')
-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 e568fb8..db82d91 100644 --- a/ecs/src/lib.rs +++ b/ecs/src/lib.rs @@ -27,7 +27,7 @@ pub mod system; pub mod tuple; pub mod type_name; -pub use ecs_macros::Component; +pub use ecs_macros::{Component, Sole}; pub use crate::query::Query; |