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

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}