tools/drawMapTest/main.cpp
author mikade
Mon, 17 Oct 2011 13:01:08 -0400
changeset 6137 f10f1b641f27
parent 4425 2314bb0c433d
permissions -rw-r--r--
graphic for team coloured RC planes

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

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