diff options
Diffstat (limited to 'ecs/src/actions.rs')
-rw-r--r-- | ecs/src/actions.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ecs/src/actions.rs b/ecs/src/actions.rs index 184f811..7dff3a5 100644 --- a/ecs/src/actions.rs +++ b/ecs/src/actions.rs @@ -169,9 +169,9 @@ pub(crate) struct EventIds #[derive(Debug)] pub(crate) enum Action { - Spawn(Vec<Box<dyn Component>>, EventIds), + Spawn(Vec<(Uid, Box<dyn Component>)>, EventIds), Despawn(Uid), - AddComponents(Uid, Vec<Box<dyn Component>>, EventIds), + AddComponents(Uid, Vec<(Uid, Box<dyn Component>)>, EventIds), RemoveComponents(Uid, Vec<ComponentMetadata>, EventIds), Stop, } |