tools/templates/main.cpp
author unc0rr
Sun, 24 Feb 2008 20:00:31 +0000
changeset 789 3d976d2579eb
parent 359 59fbfc65fbda
permissions -rw-r--r--
- More accurate rope collision detection - Implement hedgehog on rope speed limit - All this should prevent rope to be stuck in the ground

#include <QApplication>

#include "mainform.h"

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