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/query.rs | |
parent | 33cc01562c4aef94e605c9dc675450031a840d72 (diff) |
refactor(ecs): remove system::Param associated type Flags
Diffstat (limited to 'ecs/src/query.rs')
-rw-r--r-- | ecs/src/query.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ecs/src/query.rs b/ecs/src/query.rs index 0a9eca1..aa424e5 100644 --- a/ecs/src/query.rs +++ b/ecs/src/query.rs @@ -15,11 +15,7 @@ use crate::component::{ }; use crate::lock::{ReadGuard, WriteGuard}; use crate::query::options::Options; -use crate::system::{ - NoInitParamFlag as NoInitSystemParamFlag, - Param as SystemParam, - System, -}; +use crate::system::{Param as SystemParam, System}; use crate::uid::Uid; use crate::{EntityComponent, World}; @@ -161,7 +157,6 @@ where Comps: ComponentSequence, OptionsT: Options, { - type Flags = NoInitSystemParamFlag; type Input = (); fn initialize<SystemImpl>( |