Files
aliendefender/adcore.h
buull da42fe8f58 add loader
add schema
new loader model using xml
separated work and load data
validation using schema
map data in xml
new core model... proecting
2010-08-19 20:52:32 +03:00

33 lines
442 B
C++

#ifndef ADCORE_H
#define ADCORE_H
#include <QThread>
#include <QObject>
#include "aliens.h"
#include "towers.h"
#include "splashes.h"
#include "loader.h"
class adCore : public QThread
{
Q_OBJECT
public:
explicit adCore(QObject *parent = 0);
Map *admap;
Game_Data *addata;
Aliens *adaliens;
Towers *adtowers;
Splashes *adsplashes;
Loader * adload;
int step;
signals:
public slots:
void next();
private:
};
#endif // ADCORE_H