tools/drawMapTest/main.cpp
author nemo
Wed, 14 Mar 2012 21:12:04 -0400
changeset 6785 a8aa5984185f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Allow RC plane to go through portals

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

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