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/src/actions.rs | |
parent | c8d3b211b8328452c9d15955004030430a99d1fc (diff) |
refactor(ecs): store local components as system entity components
Diffstat (limited to 'ecs/src/actions.rs')
-rw-r--r-- | ecs/src/actions.rs | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/ecs/src/actions.rs b/ecs/src/actions.rs index e0efeda..2dd68bf 100644 --- a/ecs/src/actions.rs +++ b/ecs/src/actions.rs @@ -2,7 +2,7 @@ use std::marker::PhantomData; use std::rc::{Rc, Weak}; use crate::component::{Parts as ComponentParts, Sequence as ComponentSequence}; -use crate::system::{Param as SystemParam, System}; +use crate::system::{Metadata as SystemMetadata, Param as SystemParam}; use crate::uid::{Kind as UidKind, Uid}; use crate::{ActionQueue, World}; @@ -100,17 +100,7 @@ impl<'world> SystemParam<'world> for Actions<'world> { type Input = (); - fn initialize<SystemImpl>( - _system: &mut impl System<'world, SystemImpl>, - _input: Self::Input, - ) - { - } - - fn new<SystemImpl>( - _system: &'world impl System<'world, SystemImpl>, - world: &'world World, - ) -> Self + fn new(world: &'world World, _system_metadata: &SystemMetadata) -> Self { Self::new(&world.data.action_queue) } |