summaryrefslogtreecommitdiff
path: root/ecs/src/event
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-09-12 10:16:20 +0200
committerHampusM <hampus@hampusmat.com>2025-09-12 10:16:20 +0200
commitcd4170beb5275fd3acac406a8bd2ee63c1809f9f (patch)
tree693999b67b891baae56b18bc054c6aa3a1cf3c40 /ecs/src/event
parent3a2cbf0208635866e6da56091ce8e046c0bebb35 (diff)
refactor(ecs): rename event::component::OnChanged to Changed
Diffstat (limited to 'ecs/src/event')
-rw-r--r--ecs/src/event/component.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecs/src/event/component.rs b/ecs/src/event/component.rs
index 1bc39b1..421c369 100644
--- a/ecs/src/event/component.rs
+++ b/ecs/src/event/component.rs
@@ -19,4 +19,4 @@ use crate::Component;
// pub struct Removed(Infallible);
#[derive(Debug, Component)]
-pub struct OnChanged(Infallible);
+pub struct Changed(Infallible);