summaryrefslogtreecommitdiff
path: root/src/gui/button.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/button.h')
-rw-r--r--src/gui/button.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/button.h b/src/gui/button.h
index 17c700c5..eb6495c1 100644
--- a/src/gui/button.h
+++ b/src/gui/button.h
@@ -24,7 +24,9 @@
#ifndef _TMW_BUTTON_H
#define _TMW_BUTTON_H
-#include "gui.h"
+#include <guichan.hpp>
+#include <string>
+#include "../graphic/graphic.h"
/**
* Button widget. Same as the Guichan button but with custom look.
@@ -42,6 +44,9 @@ class Button : public gcn::Button {
* Draws the button.
*/
void draw(gcn::Graphics* graphics);
+
+ private:
+ ImageRect button[4];
};
#endif