tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 04 May 2016 18:14:25 +0200
changeset 11808 ffe6e1344ebd
parent 11015 7a905f0070ce
permissions -rw-r--r--
Team editor: Make bot icons and graves more visible in closed drop-down lists, smaller botlevel images

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

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

    return a.exec();
}