diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2024-01-09 20:30:05 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2024-01-10 11:30:41 -0500 |
| commit | 294c85f91ac5b2ff9e4ad3d99588ed0d1a72e6b7 (patch) | |
| tree | a92c28661e1ab4b15a9ac9e52816cc6a4c2d7b95 /src/game.cpp | |
| parent | 0a382e78b6cbc77156d78df4e7b0c2854cbb0cd1 (diff) | |
checkpoint - major ECS interface refactor
Diffstat (limited to 'src/game.cpp')
| -rw-r--r-- | src/game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp index da8f7e0..dc32b2a 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -508,13 +508,13 @@ void Game_Tick(double delta) { } /* - * ECS_Tick() gets called first because it updates the public + * ECS_Tick_Early() gets called first because it updates the public * `EntitiesToBeRemoved` for all other ticks to use. */ ECS_Tick_Early(delta); - ECS_Tick(delta); EntityType_Tick(delta); + ECS_Tick(delta); PkeInput_Tick(delta); const auto pluginCount = LoadedPkePlugins.Count(); |
