summaryrefslogtreecommitdiff
path: root/ecs-macros/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-macros/src
parent211f90114199ccd75e9f7f849b989889996307a9 (diff)
refactor(ecs): remove Component associated type from Component
Diffstat (limited to 'ecs-macros/src')
-rw-r--r--ecs-macros/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/ecs-macros/src/lib.rs b/ecs-macros/src/lib.rs
index a5acc2b..5aa4405 100644
--- a/ecs-macros/src/lib.rs
+++ b/ecs-macros/src/lib.rs
@@ -128,8 +128,6 @@ pub fn component_derive(input: TokenStream) -> TokenStream
impl #impl_generics Component for #item_ident #type_generics
#where_clause
{
- type Component = Self;
-
type HandleMut<'component> = #handle_mut_type;
type Handle<'component> = #handle_type;