tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 03 Dec 2016 17:45:32 +0100
changeset 12100 166725555e57
parent 11015 7a905f0070ce
permissions -rw-r--r--
GOTTA GO FAST! - speed up landtex filling

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

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

    return a.exec();
}