diff options
author | HampusM <hampus@hampusmat.com> | 2025-06-07 18:50:46 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-06-07 18:50:46 +0200 |
commit | 193781bd87b78fae840e6ff854f5b93b8db42195 (patch) | |
tree | 6f87fec47dd22d523c5f2b23f8e612f1f9cde09c /ecs/src | |
parent | 11367ae5b43771b722e2f98b3f3edaef1fb4505f (diff) |
refactor(ecs): remove Component Handle & HandleMut assoc types
Diffstat (limited to 'ecs/src')
-rw-r--r-- | ecs/src/component.rs | 8 |
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 |