summaryrefslogtreecommitdiff
path: root/src/gui/button.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-01-16 22:35:06 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-01-16 22:35:06 +0000
commit12356c8b5b7002cdffaa6a737f54806f52241bfb (patch)
tree8c2f46d37296420839b5cb3b9a231b5af94b31e5 /src/gui/button.h
parentc6ee43355e49e4099fdb2e1b26bf29eddcee130a (diff)
downloadmana-client-12356c8b5b7002cdffaa6a737f54806f52241bfb.tar.gz
mana-client-12356c8b5b7002cdffaa6a737f54806f52241bfb.tar.bz2
mana-client-12356c8b5b7002cdffaa6a737f54806f52241bfb.tar.xz
mana-client-12356c8b5b7002cdffaa6a737f54806f52241bfb.zip
Removed datafile and configfile and any leftover old GUI drawing code.
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