blob: cfb6d7cd14420f164464ce5506a243455c09b193 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "game.hpp"
GameSettings pkeSettings{};
void GameTick(double delta) {
/*
* ECS_Tick() gets called first because it updates the public
* `EntitiesToBeRemoved` for all other ticks to use.
*/
ECS_Tick(delta);
}
|