summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-04-23 13:20:25 +0200
committerHampusM <hampus@hampusmat.com>2025-04-23 13:20:25 +0200
commit10cab804630d77677ae94b838a153fd6050742a0 (patch)
tree6dba6a7a61033c1a9933cf3b28b8b48c6d8c7524
parentf5d257ff2670147ec4ddc77862a8c93c02e21deb (diff)
refactor(ecs): remove PRESENT phase
-rw-r--r--ecs/src/phase.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/ecs/src/phase.rs b/ecs/src/phase.rs
index 48dd38d..9f47fb8 100644
--- a/ecs/src/phase.rs
+++ b/ecs/src/phase.rs
@@ -11,5 +11,3 @@ static_entity!(pub START, (Phase,));
static_entity!(pub PRE_UPDATE, (Phase,));
static_entity!(pub UPDATE, (Phase, Pair::new::<ChildOf>(*PRE_UPDATE)));
-
-static_entity!(pub PRESENT, (Phase, Pair::new::<ChildOf>(*UPDATE)));