summaryrefslogtreecommitdiff
path: root/src/gui/playerbox.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/playerbox.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/playerbox.h')
-rw-r--r--src/gui/playerbox.h5
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