summaryrefslogtreecommitdiffstats
path: root/source/UI
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-19 11:39:13 +0200
committermadmaxoft <github@xoft.cz>2013-08-19 11:39:13 +0200
commit1a7912744ff2e0abfeae0d2d75af80d73209580c (patch)
treee5372cdfece1852c00ed7b0219ad77ee82ea1858 /source/UI
parentFixed timed event wait on Linux. (diff)
downloadcuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar
cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.gz
cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.bz2
cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.lz
cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.xz
cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.zst
cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.zip
Diffstat (limited to 'source/UI')
-rw-r--r--source/UI/SlotArea.cpp2
-rw-r--r--source/UI/Window.cpp4
-rw-r--r--source/UI/WindowOwner.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/source/UI/SlotArea.cpp b/source/UI/SlotArea.cpp
index d255e0cd9..9213d4ff8 100644
--- a/source/UI/SlotArea.cpp
+++ b/source/UI/SlotArea.cpp
@@ -5,7 +5,7 @@
#include "Globals.h"
#include "SlotArea.h"
-#include "../Player.h"
+#include "../Entities/Player.h"
#include "../BlockEntities/ChestEntity.h"
#include "../BlockEntities/DropSpenserEntity.h"
#include "../BlockEntities/FurnaceEntity.h"
diff --git a/source/UI/Window.cpp b/source/UI/Window.cpp
index 786ae6ed1..2794abe22 100644
--- a/source/UI/Window.cpp
+++ b/source/UI/Window.cpp
@@ -5,8 +5,8 @@
#include "SlotArea.h"
#include "../Item.h"
#include "../ClientHandle.h"
-#include "../Player.h"
-#include "../Pickup.h"
+#include "../Entities/Player.h"
+#include "../Entities/Pickup.h"
#include "../Inventory.h"
#include "../Items/ItemHandler.h"
#include "../BlockEntities/ChestEntity.h"
diff --git a/source/UI/WindowOwner.h b/source/UI/WindowOwner.h
index b7cbadf01..d41abf66d 100644
--- a/source/UI/WindowOwner.h
+++ b/source/UI/WindowOwner.h
@@ -2,7 +2,7 @@
#pragma once
#include "../BlockEntities/BlockEntity.h"
-#include "../Entity.h"
+#include "../Entities/Entity.h"
#include "Window.h"
/*