From c1cf1b779e66e985774dad29867a57733947b0e8 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 18 Mar 2025 14:35:11 +0100 Subject: refactor(ecs): remove Component::self_id method --- ecs/src/actions.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ecs/src/actions.rs') 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>, EventIds), + Spawn(Vec<(Uid, Box)>, EventIds), Despawn(Uid), - AddComponents(Uid, Vec>, EventIds), + AddComponents(Uid, Vec<(Uid, Box)>, EventIds), RemoveComponents(Uid, Vec, EventIds), Stop, } -- cgit v1.2.3-18-g5258