tools/templates/main.cpp
author sheepluva
Wed, 02 Sep 2015 00:39:35 +0200
changeset 11058 b91667fd6f20
parent 359 59fbfc65fbda
permissions -rw-r--r--
Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default

#include <QApplication>

#include "mainform.h"

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