tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sat, 26 Oct 2019 02:36:08 +0300
changeset 15487 4cc9ec732392
parent 11015 7a905f0070ce
permissions -rw-r--r--
refactor some of the room handler

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

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

    return a.exec();
}