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

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

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

    return a.exec();
}