tools/templates/main.cpp
author sheepluva
Sun, 01 Jun 2014 04:17:27 +0200
changeset 10251 a3b42e81803c
parent 359 59fbfc65fbda
permissions -rw-r--r--
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P

#include <QApplication>

#include "mainform.h"

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