From: Mikko Rasa Date: Sun, 7 May 2023 11:17:56 +0000 (+0300) Subject: Include generated headers from the installed location X-Git-Url: https://git.tdb.fi/?a=commitdiff_plain;h=4913cecbc90786d98b740cd5e7189ca4f189da00;p=libs%2Fgame.git Include generated headers from the installed location --- diff --git a/source/game/camera.h b/source/game/camera.h index f09c105..0d817c6 100644 --- a/source/game/camera.h +++ b/source/game/camera.h @@ -1,11 +1,11 @@ #ifndef MSP_GAME_CAMERA_H_ #define MSP_GAME_CAMERA_H_ +#include #include #include #include "component.h" #include "mspgame_api.h" -#include "setups.h" namespace Msp::Game { diff --git a/source/game/heightmapterrain.h b/source/game/heightmapterrain.h index 3a9b8a6..f6ada86 100644 --- a/source/game/heightmapterrain.h +++ b/source/game/heightmapterrain.h @@ -2,9 +2,9 @@ #define MSP_GAME_HEIGHTMAPTERRAIN_H_ #include +#include #include "component.h" #include "mspgame_api.h" -#include "setups.h" namespace Msp::Game { diff --git a/source/game/light.h b/source/game/light.h index 0df6a42..f14dc6d 100644 --- a/source/game/light.h +++ b/source/game/light.h @@ -1,9 +1,9 @@ #ifndef MSP_GAME_LIGHT_H_ #define MSP_GAME_LIGHT_H_ +#include #include "component.h" #include "mspgame_api.h" -#include "setups.h" namespace Msp::Game { diff --git a/source/game/resources.cpp b/source/game/resources.cpp index 9ab482f..0eb5a85 100644 --- a/source/game/resources.cpp +++ b/source/game/resources.cpp @@ -1,8 +1,8 @@ +#include "resources.h" #include #include #include -#include "resources.h" -#include "setups.h" +#include using namespace std;