summaryrefslogtreecommitdiff
path: root/ecs/src
diff options
context:
space:
mode:
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