summaryrefslogtreecommitdiff
path: root/src/gui/textfield.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/textfield.h')
-rw-r--r--src/gui/textfield.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/textfield.h b/src/gui/textfield.h
index 306a776c..145daae6 100644
--- a/src/gui/textfield.h
+++ b/src/gui/textfield.h
@@ -24,8 +24,8 @@
#ifndef __TMW_TEXTFIELD_H__
#define __TMW_TEXTFIELD_H__
-#include <allegro.h>
#include <guichan.hpp>
+#include "../graphic/graphic.h"
/**
* A text field.
@@ -48,6 +48,9 @@ class TextField : public gcn::TextField {
* Draws the background and border.
*/
void drawBorder(gcn::Graphics *graphics);
+
+ private:
+ ImageRect skin;
};
#endif