tools/drawMapTest/main.cpp
author claymore
Mon, 28 Mar 2011 19:31:47 +0200
changeset 5061 c90b1da271bc
parent 4425 2314bb0c433d
permissions -rw-r--r--
don't disable the light-bulb button when less than 3 teams

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

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