tools/templates/main.cpp
author nemo
Sun, 17 Apr 2011 11:57:46 -0400
changeset 5150 63ad8a648afd
parent 359 59fbfc65fbda
permissions -rw-r--r--
Allow head of rope to attach to hogs/barrels/crates again. Rope still does not, to avoid the bug.

#include <QApplication>

#include "mainform.h"

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