summaryrefslogtreecommitdiff
path: root/ecs/src
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-06-07 18:50:46 +0200
committerHampusM <hampus@hampusmat.com>2025-06-07 18:50:46 +0200
commit193781bd87b78fae840e6ff854f5b93b8db42195 (patch)
tree6f87fec47dd22d523c5f2b23f8e612f1f9cde09c /ecs/src
parent11367ae5b43771b722e2f98b3f3edaef1fb4505f (diff)
refactor(ecs): remove Component Handle & HandleMut assoc types
Diffstat (limited to 'ecs/src')
-rw-r--r--ecs/src/component.rs8
1 files changed, 0 insertions, 8 deletions
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