diff options
Diffstat (limited to 'ecs/src/component.rs')
-rw-r--r-- | ecs/src/component.rs | 5 |
1 files changed, 0 insertions, 5 deletions
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; |