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

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

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