summaryrefslogtreecommitdiff
path: root/src/text.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-09 23:47:02 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-09 23:47:02 +0100
commitfa2f3ac593a792c32095c2e885665ec91bb4019d (patch)
treef44aee845f0229dfcc6b2ad3c74613e0352f36c2 /src/text.h
parent07f7d52f661a74e6d0c780ca53e724651e3dcc48 (diff)
parent40edf4e91558cffd83d9015a2cf4a16360e27855 (diff)
downloadMana-fa2f3ac593a792c32095c2e885665ec91bb4019d.tar.gz
Mana-fa2f3ac593a792c32095c2e885665ec91bb4019d.tar.bz2
Mana-fa2f3ac593a792c32095c2e885665ec91bb4019d.tar.xz
Mana-fa2f3ac593a792c32095c2e885665ec91bb4019d.zip
Merged with Aethyra master as of 2009-02-09
Conflicts: A lot of files...
Diffstat (limited to 'src/text.h')
-rw-r--r--src/text.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/text.h b/src/text.h
index 9895ab30..6dcfd90a 100644
--- a/src/text.h
+++ b/src/text.h
@@ -23,11 +23,11 @@
#ifndef TEXT_H
#define TEXT_H
+#include <guichan/color.hpp>
+
#include "graphics.h"
#include "guichanfwd.h"
-#include <list>
-
class TextManager;
class Text
@@ -55,7 +55,7 @@ class Text
/**
* Draws the text.
*/
- virtual void draw(Graphics *graphics, int xOff, int yOff);
+ virtual void draw(gcn::Graphics *graphics, int xOff, int yOff);
private:
int mX; /**< Actual x-value of left of text written. */
@@ -93,7 +93,7 @@ class FlashText : public Text
/**
* Draws the text.
*/
- virtual void draw(Graphics *graphics, int xOff, int yOff);
+ virtual void draw(gcn::Graphics *graphics, int xOff, int yOff);
private:
int mTime; /**< Time left for flashing */