tools/drawMapTest/main.cpp
author sheepluva
Sat, 30 Nov 2013 11:14:32 +0100
changeset 9724 b3fefde4cff7
parent 4425 2314bb0c433d
permissions -rw-r--r--
fixing position of spawning sparkles of target gears by applying a filthy workaround for a filthy bug in the filthy filthy doStepCase handler. please read issue #721 ps: filthy.

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

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