diff options
| author | HampusM <hampus@hampusmat.com> | 2026-05-23 19:56:41 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-05-23 19:56:41 +0200 |
| commit | 8a41f5aeb3ac143d731928d1c343cd9338190f0a (patch) | |
| tree | a7a8bba7e119354abbaa9fff6ec4e16d2f66b829 /engine-ecs/src/system/stateful.rs | |
| parent | 02afe68342870ce4f37d7e8fb45c985397d6e08d (diff) | |
Diffstat (limited to 'engine-ecs/src/system/stateful.rs')
| -rw-r--r-- | engine-ecs/src/system/stateful.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine-ecs/src/system/stateful.rs b/engine-ecs/src/system/stateful.rs index 3e0076a..b73baeb 100644 --- a/engine-ecs/src/system/stateful.rs +++ b/engine-ecs/src/system/stateful.rs @@ -3,9 +3,8 @@ use std::mem::transmute; use seq_macro::seq; -use crate::World; -use crate::component::Parts as ComponentParts; use crate::component::local::SystemWithLocalComponents; +use crate::component::Parts as ComponentParts; use crate::event::Emitted as EmittedEvent; use crate::system::initializable::{Initializable, MaybeInitializableParamTuple}; use crate::system::observer::{ @@ -22,6 +21,7 @@ use crate::system::{ System, TypeErased, }; +use crate::World; /// A stateful system. pub struct Stateful<Func> |
