You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kspaceduel/playerinfo.h

28 lines
501 B

#ifndef __PLAYER_INFO_H
#define __PLAYER_INFO_H
#include <tqframe.h>
#include <tqlabel.h>
class TQPixmap;
#include <tqlcdnumber.h>
#include <tqcolor.h>
class PlayerInfo:public TQFrame
{
Q_OBJECT
public:
PlayerInfo(int pnr,TQWidget *parent=0,const char *name=0);
public slots:
void setHitpoints(int h);
void setEnergy(int e);
void setWins(int w);
private:
TQPixmap* pix[4];
int currentPixmap;
TQLabel lplayer,lenergy,lwins;
TQLCDNumber hitpoints,energy,wins;
};
#endif