tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 11 Oct 2017 01:23:38 +0200
changeset 12688 e095ed002652
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix "at least 2 teams" warning not updated when net team is added/removed

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

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

    return a.exec();
}