tools/drawMapTest/main.cpp
author nemo
Sat, 23 Jan 2016 17:29:44 -0500
changeset 11534 58b4e357bcbf
parent 4425 2314bb0c433d
permissions -rw-r--r--
As an animation effect this should be in uGearsRender. Plus it'll still spark when paused then, which is kinda fun.

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

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