tools/templates/main.cpp
author unc0rr
Sun, 08 Jul 2012 18:59:25 +0400
changeset 7362 53bcfc714cb3
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix rare condition when hog's gear stucks in an infinite loop which adds 1 to its Y coordinate not checking for drowning

#include <QApplication>

#include "mainform.h"

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