tools/drawMapTest/main.cpp
author nemo
Mon, 29 Oct 2012 09:35:16 -0400
changeset 7874 c8aba48f38dc
parent 4425 2314bb0c433d
permissions -rw-r--r--
Arbitrarily tweaked to not firepunch loose, and to increase chance of bazooka doing it to about 20%

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

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