tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur <mail@none>
Thu, 07 Feb 2019 17:17:42 +0300
changeset 14715 25c564f77b7d
parent 11015 7a905f0070ce
permissions -rw-r--r--
remove lobby room

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

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

    return a.exec();
}