summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index c8c8a0d..045fdfe 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -6,6 +6,7 @@
#include <thread>
#include <csignal>
+#include "physics.hpp"
#include "player-input.hpp"
#include "asset-manager.hpp"
#include "ecs.hpp"
@@ -32,6 +33,7 @@ int main() {
fprintf(stdout, "PKE ENTERING\n");
try {
AM_Init();
+ Physics_Init();
Game_Init();
ECS_Init();
CreateWindow(&windowProps);
@@ -126,6 +128,7 @@ int main() {
Event_Teardown();
EntityType_Teardown();
PkeInput_Teardown();
+ Physics_Teardown();
ECS_Teardown();
AM_DebugPrint();
AM_Teardown();