From f98be769e79a52d9545f9b7f87bd6e6b767a3de2 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 6 Dec 2024 13:44:51 -0600 Subject: [PATCH] More fixing of physics not being optioned --- src/dawn/game/IGame.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/dawn/game/IGame.hpp b/src/dawn/game/IGame.hpp index ebaea014..f4da0638 100644 --- a/src/dawn/game/IGame.hpp +++ b/src/dawn/game/IGame.hpp @@ -12,9 +12,12 @@ #include "asset/AssetManager.hpp" #include "locale/LocaleManager.hpp" #include "save/SaveManager.hpp" -#include "physics/PhysicsManager.hpp" #include "settings/SettingsManager.hpp" +#ifdef DAWN_ENABLE_PHYSICS + #include "physics/PhysicsManager.hpp" +#endif + namespace Dawn { class Scene; class Game;