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:
2010-07-30 01:25:49 +04:00
parent 45988256ac
commit 5318650e91
22 changed files with 1295 additions and 140 deletions

View File

@@ -3,7 +3,7 @@
#include <QObject>
#include "map.h"
#include "player.h"
class Game_Data : public QObject
{
@@ -12,19 +12,16 @@ public:
explicit Game_Data(Map * map, QObject *parent = 0);
QVector <Alien> srcAliens;
QVector <Alien> curAliens;
QVector <Tower> srcTowers;
QVector <Tower> curTowers;
QVector <Splash> srcSplashes;
QVector <Splash> curSplashes;
QVector <Wave> waves;
QVector<unsigned long int> adMoney; // vector because of many players
QVector<int> selectAlienId; // same reason
QVector <Player *> players;
Map * map;
int curWave;
int missingAliens;
signals:
public slots:
};
#endif // GAME_DATA_H