tools/templates/main.cpp
author smxx
Sun, 11 Apr 2010 09:53:28 +0000
changeset 3336 d7c1ffed1e15
parent 359 59fbfc65fbda
permissions -rw-r--r--
Engine: * Avoid hedgehog specific actions (attack, jump, etc.) to be triggered while the game is paused

#include <QApplication>

#include "mainform.h"

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