tools/templates/main.cpp
author alfadur
Fri, 06 Oct 2017 14:45:22 +0200
changeset 12657 2065819170ce
parent 359 59fbfc65fbda
permissions -rw-r--r--
(Hopefully) fix game camera being shifted on Windows 10 IMPORTANT: This fix needs testing before 0.9.23 release!

#include <QApplication>

#include "mainform.h"

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