tools/templates/main.cpp
author belphegorr <szabibibi@gmail.com>
Tue, 26 Jun 2012 02:07:58 +0300
changeset 7211 a1e9335f1d50
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fixed a bug in Mission 2, where hidden hogs appeared before getting deleted on losing the game.

#include <QApplication>

#include "mainform.h"

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