changes in arhitecture, some improvments, much optimising and simplify,
many bagfixes and new graphics engine
This commit is contained in:
13
main.cpp
13
main.cpp
@@ -1,18 +1,15 @@
|
||||
#include <QtGui/QApplication>
|
||||
#include <QTimer>
|
||||
|
||||
#include "adcore.h"
|
||||
#include "ad_graphics.h"
|
||||
#include "form.h"
|
||||
#include "ui_form.h"
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
AD_Core core;
|
||||
AD_Graphics graphics(&core);
|
||||
graphics.resize(750,450);
|
||||
//QTimer * timer = new QTimer();
|
||||
//QObject::connect(timer,SIGNAL(timeout()),&core,SLOT(next()));
|
||||
//timer->start(100);
|
||||
a.setStyle("cleanlooks");
|
||||
Form f;
|
||||
f.show();
|
||||
return a.exec();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user