diff options
author | HampusM <hampus@hampusmat.com> | 2025-08-15 13:38:27 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-08-22 17:18:54 +0200 |
commit | e229b104593d3afede47cc07e9917a42d6d13e60 (patch) | |
tree | 25cd15befc8bf3e5864158aa791895c6d5bea751 /ecs/examples/with_local.rs | |
parent | c8d3b211b8328452c9d15955004030430a99d1fc (diff) |
refactor(ecs): store local components as system entity components
Diffstat (limited to 'ecs/examples/with_local.rs')
-rw-r--r-- | ecs/examples/with_local.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ecs/examples/with_local.rs b/ecs/examples/with_local.rs index 4658fc0..7a36d0e 100644 --- a/ecs/examples/with_local.rs +++ b/ecs/examples/with_local.rs @@ -1,6 +1,7 @@ use ecs::component::local::Local; use ecs::phase::UPDATE as UPDATE_PHASE; -use ecs::system::{Into, System}; +use ecs::system::initializable::Initializable; +use ecs::system::Into; use ecs::{Component, Query, World}; #[derive(Component)] |