tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 09 Aug 2018 17:48:16 +0200
changeset 13652 7b506f1357e4
parent 11015 7a905f0070ce
permissions -rw-r--r--
Backed out changeset 2d787d122083 to revert TotalRounds to 0.9.23 behaviour

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

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

    return a.exec();
}