tools/templates/main.cpp
author sheepluva
Fri, 31 Dec 2010 21:33:13 +0100
changeset 4797 15a443eec371
parent 359 59fbfc65fbda
permissions -rw-r--r--
revert ed78465973f6 ("detach rope if the Land[] vanishes") for now, some questionable/troublecausing parts there.

#include <QApplication>

#include "mainform.h"

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