tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sun, 12 Jul 2020 01:08:42 +0300
changeset 15721 1244c64b8e28
parent 11015 7a905f0070ce
permissions -rw-r--r--
world wrap water sentries

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

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

    return a.exec();
}