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

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

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