tools/templates/main.cpp
author sheepluva
Wed, 13 Aug 2014 13:36:35 +0200
changeset 10379 caa5b40e405b
parent 359 59fbfc65fbda
permissions -rw-r--r--
I a recent commit I caused flames to use uninitialized values. that lead to fire burning slow and desyncs. this commit fixes/reverts this

#include <QApplication>

#include "mainform.h"

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