tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 22 Sep 2017 19:26:57 +0200
changeset 12496 24cd4840d3e2
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix the key for toggling team bars being incorrectly described in the settings page

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

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

    return a.exec();
}