diff options
author | HampusM <hampus@hampusmat.com> | 2025-04-23 13:20:25 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-04-23 13:20:25 +0200 |
commit | 10cab804630d77677ae94b838a153fd6050742a0 (patch) | |
tree | 6dba6a7a61033c1a9933cf3b28b8b48c6d8c7524 | |
parent | f5d257ff2670147ec4ddc77862a8c93c02e21deb (diff) |
refactor(ecs): remove PRESENT phase
-rw-r--r-- | ecs/src/phase.rs | 2 |
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))); |