tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Sat, 23 Jan 2016 17:29:44 -0500
changeset 11534 58b4e357bcbf
parent 11015 7a905f0070ce
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 "mainwindow.h"
#include <QApplication>

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

    return a.exec();
}