diff options
author | HampusM <hampus@hampusmat.com> | 2025-09-12 10:16:20 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-09-12 10:16:20 +0200 |
commit | cd4170beb5275fd3acac406a8bd2ee63c1809f9f (patch) | |
tree | 693999b67b891baae56b18bc054c6aa3a1cf3c40 /ecs/src/event/component.rs | |
parent | 3a2cbf0208635866e6da56091ce8e046c0bebb35 (diff) |
refactor(ecs): rename event::component::OnChanged to Changed
Diffstat (limited to 'ecs/src/event/component.rs')
-rw-r--r-- | ecs/src/event/component.rs | 2 |
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); |