summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-08-31 20:38:42 +0300
committerAndrei Karas <akaras@inbox.ru>2013-08-31 20:38:42 +0300
commitb310c51796d1632aeefc834dc0e931c52f909a41 (patch)
tree1332b627664b8450cc3fdbbd2995ce0ffc67b724 /src/gui
parent07c2392f2a7a7fa90d1c0dfe97dbd3bf29fdfad1 (diff)
downloadManaVerse-b310c51796d1632aeefc834dc0e931c52f909a41.tar.gz
ManaVerse-b310c51796d1632aeefc834dc0e931c52f909a41.tar.bz2
ManaVerse-b310c51796d1632aeefc834dc0e931c52f909a41.tar.xz
ManaVerse-b310c51796d1632aeefc834dc0e931c52f909a41.zip
move render classes into render dir.
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/sdlfont.cpp3
-rw-r--r--src/gui/theme.h3
-rw-r--r--src/gui/widgets/window.h5
3 files changed, 7 insertions, 4 deletions
diff --git a/src/gui/sdlfont.cpp b/src/gui/sdlfont.cpp
index c0ca34bbb..c9093b747 100644
--- a/src/gui/sdlfont.cpp
+++ b/src/gui/sdlfont.cpp
@@ -26,7 +26,8 @@
#include "client.h"
#include "logger.h"
#include "main.h"
-#include "sdlgraphics.h"
+
+#include "render/sdlgraphics.h"
#include "resources/image.h"
#include "resources/imagehelper.h"
diff --git a/src/gui/theme.h b/src/gui/theme.h
index 21f541701..9fe49371a 100644
--- a/src/gui/theme.h
+++ b/src/gui/theme.h
@@ -26,7 +26,8 @@
#define GUI_THEME_H
#include "configlistener.h"
-#include "graphics.h"
+
+#include "render/graphics.h"
#include "gui/palette.h"
diff --git a/src/gui/widgets/window.h b/src/gui/widgets/window.h
index f6c5d0765..d1387aca8 100644
--- a/src/gui/widgets/window.h
+++ b/src/gui/widgets/window.h
@@ -23,8 +23,7 @@
#ifndef GUI_WIDGETS_WINDOW_H
#define GUI_WIDGETS_WINDOW_H
-#include "graphics.h"
-#include "localconsts.h"
+#include "render/graphics.h"
#include "gui/widgets/widget2.h"
@@ -32,6 +31,8 @@
#include <guichan/widgets/window.hpp>
+#include "localconsts.h"
+
class ContainerPlacer;
class ImageCollection;
class Layout;