diff options
author | HampusM <hampus@hampusmat.com> | 2025-08-20 14:17:14 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-08-20 14:17:14 +0200 |
commit | 5c9113431ea22c53cc59324c93ec3dc6efdfe926 (patch) | |
tree | 3218de3310339878a25b26ac957e0b2d54e7be49 /ecs/src/lib.rs | |
parent | fb9263ff3fd6211d5ca19e182094e25835886503 (diff) |
feat(ecs): add support for pairs with target component as data
Diffstat (limited to 'ecs/src/lib.rs')
-rw-r--r-- | ecs/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ecs/src/lib.rs b/ecs/src/lib.rs index 979b517..fa31460 100644 --- a/ecs/src/lib.rs +++ b/ecs/src/lib.rs @@ -25,7 +25,7 @@ use crate::event::component::{ }; use crate::extension::{Collector as ExtensionCollector, Extension}; use crate::lock::Lock; -use crate::pair::{ChildOf, DependsOn, Pair}; +use crate::pair::{ChildOf, DependsOn, Pair, Wildcard}; use crate::phase::{Phase, START as START_PHASE}; use crate::query::flexible::Query as FlexibleQuery; use crate::query::term::Without; @@ -39,7 +39,7 @@ use crate::query::{ use crate::sole::Sole; use crate::stats::Stats; use crate::system::{System, SystemComponent}; -use crate::uid::{Kind as UidKind, Uid, Wildcard}; +use crate::uid::{Kind as UidKind, Uid}; pub mod actions; pub mod component; |