tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 16 Mar 2018 19:25:51 +0100
changeset 13235 d5a029299407
parent 11015 7a905f0070ce
permissions -rw-r--r--
QTfrontend: Remove ugly rectangle in list of active teams when there are no teams

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

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

    return a.exec();
}