diff options
Diffstat (limited to 'src/UI')
-rw-r--r-- | src/UI/CMakeLists.txt | 3 | ||||
-rw-r--r-- | src/UI/HorseWindow.cpp | 6 | ||||
-rw-r--r-- | src/UI/SlotArea.cpp | 2 |
3 files changed, 4 insertions, 7 deletions
diff --git a/src/UI/CMakeLists.txt b/src/UI/CMakeLists.txt index 32a5af4a5..28a99b6ed 100644 --- a/src/UI/CMakeLists.txt +++ b/src/UI/CMakeLists.txt @@ -1,6 +1,3 @@ -project (Cuberite) - -include_directories ("${PROJECT_SOURCE_DIR}/../") SET (SRCS SlotArea.cpp diff --git a/src/UI/HorseWindow.cpp b/src/UI/HorseWindow.cpp index ab060609d..bc15682f1 100644 --- a/src/UI/HorseWindow.cpp +++ b/src/UI/HorseWindow.cpp @@ -4,9 +4,9 @@ // Representing the UI window for a horse entity #include "Globals.h" -#include "Mobs/Horse.h" -#include "UI/HorseWindow.h" -#include "UI/SlotArea.h" +#include "../Mobs/Horse.h" +#include "../UI/HorseWindow.h" +#include "../UI/SlotArea.h" diff --git a/src/UI/SlotArea.cpp b/src/UI/SlotArea.cpp index e3c9bf5e8..e7a6b4407 100644 --- a/src/UI/SlotArea.cpp +++ b/src/UI/SlotArea.cpp @@ -21,7 +21,7 @@ #include "../BlockArea.h" #include "../EffectID.h" #include "../ClientHandle.h" -#include "Mobs/Horse.h" +#include "../Mobs/Horse.h" |