24 lines
333 B
C++
24 lines
333 B
C++
#ifndef PLAYER_H
|
|
#define PLAYER_H
|
|
|
|
#include "base_types.h"
|
|
|
|
class Player : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Player(int Id, QObject *parent = 0);
|
|
unsigned long int money;
|
|
unsigned long int score;
|
|
int selectAlienId;
|
|
QList <srcTowerType> srcTowers;
|
|
int playerId;
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
private:
|
|
};
|
|
|
|
#endif // PLAYER_H
|