From 402b66282bd1062a36bd7fed793b6014bdb286b2 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 8 Apr 2025 18:56:24 +0200 Subject: refactor(ecs): remove Component associated type from Component --- ecs/src/component.rs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'ecs') diff --git a/ecs/src/component.rs b/ecs/src/component.rs index 49265b3..4516b93 100644 --- a/ecs/src/component.rs +++ b/ecs/src/component.rs @@ -28,11 +28,6 @@ pub(crate) mod storage; pub trait Component: SystemInput + Any { - /// The component type in question. Will usually be `Self` - type Component: Component - where - Self: Sized; - type HandleMut<'component>: HandleFromEntityComponentRef<'component> where Self: Sized; -- cgit v1.2.3-18-g5258