diff options
author | HampusM <hampus@hampusmat.com> | 2025-04-01 21:18:07 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-04-01 21:18:07 +0200 |
commit | dd6bef9a9d04a56b088379468b4156057ca0efe9 (patch) | |
tree | fb9e7aa1c744943e3f83e1e89ccb49ee9d22d235 /ecs/src/relationship.rs | |
parent | 727756c717bca951fc6f8e25d4d206b95d62fbb9 (diff) |
refactor(ecs): make component storage more encapsulated
Diffstat (limited to 'ecs/src/relationship.rs')
-rw-r--r-- | ecs/src/relationship.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ecs/src/relationship.rs b/ecs/src/relationship.rs index a0ccf4d..e5442c2 100644 --- a/ecs/src/relationship.rs +++ b/ecs/src/relationship.rs @@ -179,9 +179,9 @@ where let component = ComponentRefMut::new( entity - .components + .components() .get(component_index)? - .component + .component() .write_nonblock() .unwrap_or_else(|_| { panic!( @@ -434,9 +434,9 @@ where let component = ComponentRef::new( entity - .components + .components() .get(component_index)? - .component + .component() .read_nonblock() .unwrap_or_else(|_| { panic!( |