Files
aliendefender/game_data.h
blizer 894e55bb41 added morphs, fix some bugs, new images
added onAlienInRadius trigger
but it not work right((
2011-08-21 22:22:02 +04:00

36 lines
709 B
C++

#ifndef GAME_DATA_H
#define GAME_DATA_H
#include "player.h"
#include "aliens.h"
#include "base_types.h"
#include "map.h"
#include <QGraphicsItemGroup>
class Game_Data : public QObject
{
Q_OBJECT
public:
explicit Game_Data(Map * map, QObject *parent = 0);
QList <srcSplashType> srcSplashes;
QList <srcTriggerType> srcTriggers;
QHash <int,SplashType> curSplashes;
QHash <QPoint,TowerType> curTowers;
QList <WaveType> waves;
QList <Player *> players;
QList <AnimationType> curAnimations;
AnimationType towerSelect;
AnimationType alienSelect;
Map * map;
Aliens * aliens;
int curWave;
int missingAliens;
signals:
public slots:
};
#endif // GAME_DATA_H