From 193781bd87b78fae840e6ff854f5b93b8db42195 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 7 Jun 2025 18:50:46 +0200 Subject: refactor(ecs): remove Component Handle & HandleMut assoc types --- ecs/src/component.rs | 8 -------- 1 file changed, 8 deletions(-) (limited to 'ecs/src/component.rs') diff --git a/ecs/src/component.rs b/ecs/src/component.rs index a0ed752..222c5fe 100644 --- a/ecs/src/component.rs +++ b/ecs/src/component.rs @@ -23,14 +23,6 @@ pub(crate) mod storage; pub trait Component: SystemInput + Any { - type HandleMut<'component>: HandleFromEntityComponentRef<'component> - where - Self: Sized; - - type Handle<'component>: HandleFromEntityComponentRef<'component> - where - Self: Sized; - /// Returns the ID of this component. fn id() -> Uid where -- cgit v1.2.3-18-g5258