#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 srcTowers; int playerId; signals: public slots: private: }; #endif // PLAYER_H