tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 28 May 2019 01:28:59 +0200
changeset 15069 e16f906224fd
parent 11015 7a905f0070ce
permissions -rw-r--r--
Change mission panel icons for a couple of game styles

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

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

    return a.exec();
}