tools/templates/main.cpp
author nemo
Sun, 27 May 2018 13:10:32 -0400
changeset 13405 4c813650fe17
parent 359 59fbfc65fbda
permissions -rw-r--r--
make the mine slippery too since it has the ice finish - add a gmDelete to the gear if you want it to *not* explode when hit ☺

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}