tools/templates/main.cpp
author unc0rr
Mon, 01 Dec 2008 14:24:17 +0000
changeset 1524 5a652a465559
parent 359 59fbfc65fbda
permissions -rw-r--r--
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}