diff -r 41fd46cffc52 -r 106aaf6eadfe src/Graphics/PlayerInfo.hh --- a/src/Graphics/PlayerInfo.hh Wed Jan 21 01:57:24 2009 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,37 +0,0 @@ -#ifndef GRAPHICS_PLAYER_INFO_HH -#define GRAPHICS_PLAYER_INFO_HH - -#include "View.hh" -#include "../Player.hh" - -namespace graphics -{ - -class PlayerInfo : public View { -private: - /** - * The player whose info we are drawing - * - * XXX: should this be LocalPlayer or is Player good? - */ - Player *player; - -public: - /** - * Set initial view area and player - */ - PlayerInfo (const PixelArea &area, Player *player) : - View(area), player(player) - { - - } - - /** - * Draw the player info onto the given display - */ - virtual void draw (Display *display); -} - -} - -#endif