diff options
author | HampusM <hampus@hampusmat.com> | 2024-12-13 17:28:02 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-12-13 17:28:02 +0100 |
commit | 0f09a8a52d72c2e91166f54136846ea3907bb776 (patch) | |
tree | 910627ee0fa0b6b3c111bb7c2c4b98f95a4bf571 /ecs/src/component/local.rs | |
parent | 33cc01562c4aef94e605c9dc675450031a840d72 (diff) |
refactor(ecs): remove system::Param associated type Flags
Diffstat (limited to 'ecs/src/component/local.rs')
-rw-r--r-- | ecs/src/component/local.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ecs/src/component/local.rs b/ecs/src/component/local.rs index aac4255..ad79f6f 100644 --- a/ecs/src/component/local.rs +++ b/ecs/src/component/local.rs @@ -15,7 +15,6 @@ impl<'world, LocalComponent> SystemParam<'world> for Local<'world, LocalComponen where LocalComponent: Component, { - type Flags = (); type Input = LocalComponent; fn initialize<SystemImpl>( |