diff options
author | HampusM <hampus@hampusmat.com> | 2025-09-10 15:35:26 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-09-10 15:35:26 +0200 |
commit | ce1bade2c21cc3129fa8bc2b4bc67bc4dc2c25c3 (patch) | |
tree | b1c947e7736b69b4fbf16521bc9705450525f61c /ecs/src/component/storage.rs | |
parent | f5ee3b13a45b58b482a48c97ea6e67b587f1cc52 (diff) |
refactor(ecs): remove component added & removed events
Diffstat (limited to 'ecs/src/component/storage.rs')
-rw-r--r-- | ecs/src/component/storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecs/src/component/storage.rs b/ecs/src/component/storage.rs index b27b552..4ec5222 100644 --- a/ecs/src/component/storage.rs +++ b/ecs/src/component/storage.rs @@ -270,7 +270,7 @@ impl Storage entity.insert_component( component_id, - ArchetypeEntityComponent::new(component, component_id, component_name), + ArchetypeEntityComponent::new(component, component_name), add_edge_archetype, ); |