Files
aliendefender/player.h
buull 191e5ed1a1 I think finished structures
and some changes in loading
and changes in map class
we have 2 TODO now
2010-08-22 21:55:29 +03:00

26 lines
346 B
C++

#ifndef PLAYER_H
#define PLAYER_H
#include <QObject>
#include "map.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