tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 10 Jan 2019 19:47:18 +0100
changeset 14545 adf3e7d94db0
parent 11015 7a905f0070ce
permissions -rw-r--r--
Don't say "first blood" in games with only 1 clan

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

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

    return a.exec();
}