Files
aliendefender/main.cpp
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

16 lines
309 B
C++

#include <QDebug>
#include <QtGui/QApplication>
#include <QTimer>
#include "adcore.h"
int main(int argc, char *argv[])
{
adCore core;
QApplication a(argc, argv);
//QTimer * timer = new QTimer();
//QObject::connect(timer,SIGNAL(timeout()),&core,SLOT(next()));
//timer->start(100);
//return a.exec();
}