added some graphics but only for debug
This commit is contained in:
8
main.cpp
8
main.cpp
@@ -2,15 +2,17 @@
|
||||
#include <QTimer>
|
||||
|
||||
#include "adcore.h"
|
||||
#include "ad_graphics.h"
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
adCore core;
|
||||
QApplication a(argc, argv);
|
||||
AD_Core core;
|
||||
AD_Graphics graphics(&core);
|
||||
graphics.resize(800,600);
|
||||
//QTimer * timer = new QTimer();
|
||||
//QObject::connect(timer,SIGNAL(timeout()),&core,SLOT(next()));
|
||||
//timer->start(100);
|
||||
//return a.exec();
|
||||
return 0;
|
||||
return a.exec();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user