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/playerbox.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/playerbox.h')
-rw-r--r-- | src/gui/playerbox.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/playerbox.h b/src/gui/playerbox.h index 87ab24e0..9cb64b84 100644 --- a/src/gui/playerbox.h +++ b/src/gui/playerbox.h @@ -24,8 +24,8 @@ #ifndef __TMW_PLAYERBOX_H__ #define __TMW_PLAYERBOX_H__ -#include <allegro.h> #include <guichan.hpp> +#include "../graphic/graphic.h" /** * A box showing a player. Draws the various hair styles a player can have @@ -53,6 +53,9 @@ class PlayerBox : public gcn::ScrollArea { int hairColor; /**< The hair color index */ int hairStyle; /**< The hair style index */ bool showPlayer; /**< Wether to show the player or not */ + + private: + ImageRect background; }; #endif |