added some graphics but only for debug
This commit is contained in:
16
adcore.h
16
adcore.h
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user