diff options
author | HampusM <hampus@hampusmat.com> | 2025-04-08 18:56:24 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-04-08 18:56:24 +0200 |
commit | 402b66282bd1062a36bd7fed793b6014bdb286b2 (patch) | |
tree | b654d0bece5545a0c58bd25304613bac7272d519 /ecs-macros/src | |
parent | 211f90114199ccd75e9f7f849b989889996307a9 (diff) |
refactor(ecs): remove Component associated type from Component
Diffstat (limited to 'ecs-macros/src')
-rw-r--r-- | ecs-macros/src/lib.rs | 2 |
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; |