tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Thu, 08 Nov 2018 21:57:05 +0100
changeset 14181 5ad911992460
parent 11015 7a905f0070ce
permissions -rw-r--r--
A bit of rethinking of game messages and command

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

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

    return a.exec();
}