From 4913cecbc90786d98b740cd5e7189ca4f189da00 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 7 May 2023 14:17:56 +0300 Subject: [PATCH] Include generated headers from the installed location --- source/game/camera.h | 2 +- source/game/heightmapterrain.h | 2 +- source/game/light.h | 2 +- source/game/resources.cpp | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) 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; -- 2.45.2