tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Mon, 02 Dec 2024 17:36:44 +0100
branchtransitional_engine
changeset 16074 58a2d806fc47
parent 11015 7a905f0070ce
permissions -rw-r--r--
Tweak the rest of map templates

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

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

    return a.exec();
}