src/Graphics/PlayerInfoView.hh
author morasa@smirgeline.hut.fi
Fri, 11 Sep 2009 16:45:04 +0300
branchnew-physics
changeset 447 fc9e4305fddf
parent 412 721c60072091
permissions -rw-r--r--
create new physics branch
#ifndef GRAPHICS_PLAYER_INFO_VIEW_HH
#define GRAPHICS_PLAYER_INFO_VIEW_HH

#include "View.hh"
#include "../Player.hh"

namespace graphics
{

class PlayerInfoView : 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
     */
    PlayerInfoView (const PixelArea &area, Player *player) :
        View(area), player(player)
    {

    }
    
    /**
     * Draw the player info onto the given display
     */
    virtual void draw (Display &display);
};

}

#endif