summaryrefslogtreecommitdiff
path: root/ecs/src/event
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-06-07 22:52:36 +0200
committerHampusM <hampus@hampusmat.com>2025-06-07 22:54:34 +0200
commit43cbd47900d23801c584def1b7877fdea700c23a (patch)
tree72393506bbe46a66cff5fe8e1acaf68107216c25 /ecs/src/event
parentaeed1b1ff3e34fe719a2f7e6097584b99a673ded (diff)
feat(ecs): make component removals queryableHEADmaster
This replaces the old component removed events
Diffstat (limited to 'ecs/src/event')
-rw-r--r--ecs/src/event/component.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/ecs/src/event/component.rs b/ecs/src/event/component.rs
index ef09480..72a78a3 100644
--- a/ecs/src/event/component.rs
+++ b/ecs/src/event/component.rs
@@ -10,9 +10,3 @@ use crate::Component;
/// b) The target component is added to a entity.
#[derive(Debug, Component)]
pub struct Added(Infallible);
-
-/// Pair relation for events emitted when:
-/// a) The target component is removed from a entity.
-/// b) A entity with the target component is despawned.
-#[derive(Debug, Component)]
-pub struct Removed(Infallible);