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;