tools/templates/main.cpp
author sheepluva
Fri, 04 Nov 2011 12:50:37 +0100
changeset 6278 654eed7c6b97
parent 359 59fbfc65fbda
permissions -rw-r--r--
tweak DrawTunnel call of blowtorch. should fix issues with blowtorch going horizontal when it shouldn't

#include <QApplication>

#include "mainform.h"

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