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/sole.rs | |
parent | c8d3b211b8328452c9d15955004030430a99d1fc (diff) |
refactor(ecs): store local components as system entity components
Diffstat (limited to 'ecs/src/sole.rs')
-rw-r--r-- | ecs/src/sole.rs | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/ecs/src/sole.rs b/ecs/src/sole.rs index 1cce419..f148224 100644 --- a/ecs/src/sole.rs +++ b/ecs/src/sole.rs @@ -5,7 +5,7 @@ use std::ops::{Deref, DerefMut}; use std::sync::{Arc, Weak}; use crate::lock::{Lock, WriteGuard}; -use crate::system::{Param as SystemParam, System}; +use crate::system::{Metadata as SystemMetadata, Param as SystemParam}; use crate::World; /// A type which has a single instance and is shared globally. @@ -85,17 +85,7 @@ where { 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 { let sole = world.data.sole_storage.get::<SoleT>().unwrap_or_else(|| { panic!("Sole {} was not found in world", type_name::<SoleT>()) |