tools/drawMapTest/main.cpp
author nemo
Thu, 17 May 2012 20:23:58 -0400
changeset 7091 7989850b4418
parent 4425 2314bb0c433d
permissions -rw-r--r--
Might help if this was actually its own unique weapon

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

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