tools/templates/main.cpp
author Henek
Wed, 22 Jun 2011 01:04:38 +0200
changeset 5287 ffc1475a4afd
parent 359 59fbfc65fbda
permissions -rw-r--r--
fixed gfInfAttack preventing ending of turn while placing hedgehogs

#include <QApplication>

#include "mainform.h"

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