diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-16 22:35:06 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-16 22:35:06 +0000 |
commit | 12356c8b5b7002cdffaa6a737f54806f52241bfb (patch) | |
tree | 8c2f46d37296420839b5cb3b9a231b5af94b31e5 /src/gui/button.h | |
parent | c6ee43355e49e4099fdb2e1b26bf29eddcee130a (diff) | |
download | mana-12356c8b5b7002cdffaa6a737f54806f52241bfb.tar.gz mana-12356c8b5b7002cdffaa6a737f54806f52241bfb.tar.bz2 mana-12356c8b5b7002cdffaa6a737f54806f52241bfb.tar.xz mana-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.h | 7 |
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 |