tools/templates/main.cpp
author unc0rr
Tue, 23 Dec 2008 20:44:32 +0000
changeset 1548 682c0c968997
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix wrond hedgehog speed calculation when using rope and changing rope length - Should fix weird rope behaviour when touching land and changing rope length

#include <QApplication>

#include "mainform.h"

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