Core is realy wait for work and test
Aliens create, wavetrace work, towers build, aliens move - thats all by now. I think it is time to write Graphic and Network modules.
This commit is contained in:
25
player.h
Normal file
25
player.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#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 adMoney;
|
||||
int selectAlienId;
|
||||
QVector <Tower> srcTowers;
|
||||
QVector <Splash> srcSplashes;
|
||||
int playerId;
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
#endif // PLAYER_H
|
||||
Reference in New Issue
Block a user