added some graphics but only for debug

This commit is contained in:
peri4
2010-08-27 14:04:05 +04:00
parent b3854e867d
commit 95f3fb74fa
37 changed files with 876 additions and 707 deletions

View File

@@ -8,22 +8,30 @@
#include "splashes.h"
#include "loader.h"
class adCore : public QThread
class AD_Core : public QThread
{
Q_OBJECT
public:
explicit adCore(QObject *parent = 0);
explicit AD_Core(QObject *parent = 0);
Game_Data * addata;
Aliens * adaliens;
Towers * adtowers;
Splashes * adsplashes;
Loader * adloader;
unsigned int step;
signals:
private:
void timerEvent(QTimerEvent * );
void waveProcessing();
bool waveInProgress;
int wavetime;
public slots:
void next();
private:
void nextWave();
void addTower(QPoint pos) {adtowers->addTower(0, 0, pos);};
signals:
};
#endif // ADCORE_H