tools/templates/main.cpp
author sheepluva
Sat, 27 Mar 2010 00:03:29 +0000 (2010-03-27)
changeset 3092 dfeb6fc771f7
parent 359 59fbfc65fbda
permissions -rw-r--r--
doStepBomb: cache rounded values of Gear^.X/Y instead of recalculating the exact same values up to 512 times
#include <QApplication>

#include "mainform.h"

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