#ifndef PLAYER_H #define PLAYER_H #include #include "map.h" class Player : public QObject { Q_OBJECT public: explicit Player(int Id, QObject *parent = 0); unsigned long int adMoney; int selectAlienId; QVector srcTowers; QVector srcSplashes; int playerId; signals: public slots: private: }; #endif // PLAYER_H