diff options
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 026ddb8..b5a0697 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -7,6 +7,7 @@ #include <csignal> #include "asset-manager.hpp" +#include "ecs.hpp" #include "game.hpp" #include "window.hpp" @@ -18,7 +19,7 @@ void signal_handler(int signal_num) { PKEWindowProperties windowProps{}; void Tick(double delta) { - /* no-op */ + GameTick(delta); } int main() { @@ -27,6 +28,7 @@ int main() { printf("PKE ENTERING\n"); try { AssetManagerInit(); + ECS_Init(); CreateWindow(&windowProps); auto steadyClock = std::chrono::steady_clock(); |
