diff options
author | HampusM <hampus@hampusmat.com> | 2025-04-08 18:56:24 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-04-08 18:56:24 +0200 |
commit | 402b66282bd1062a36bd7fed793b6014bdb286b2 (patch) | |
tree | b654d0bece5545a0c58bd25304613bac7272d519 /ecs/src | |
parent | 211f90114199ccd75e9f7f849b989889996307a9 (diff) |
refactor(ecs): remove Component associated type from Component
Diffstat (limited to 'ecs/src')
-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; |