tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 20 Dec 2018 17:51:46 +0100
changeset 14482 d4aa64f51c9f
parent 11015 7a905f0070ce
permissions -rw-r--r--
Use player-chosen team identity for most challenges and scenarios

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

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

    return a.exec();
}