summaryrefslogtreecommitdiff
path: root/ecs/src
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-04-08 18:56:24 +0200
committerHampusM <hampus@hampusmat.com>2025-04-08 18:56:24 +0200
commit402b66282bd1062a36bd7fed793b6014bdb286b2 (patch)
treeb654d0bece5545a0c58bd25304613bac7272d519 /ecs/src
parent211f90114199ccd75e9f7f849b989889996307a9 (diff)
refactor(ecs): remove Component associated type from Component
Diffstat (limited to 'ecs/src')
-rw-r--r--ecs/src/component.rs5
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;