tools/templates/main.cpp
author unc0rr
Fri, 16 Jan 2009 23:27:25 +0000
changeset 1687 a73c8cda1ed1
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix engine freeze when one of the teams is killed before its first turn, number of hedgehogs in that team < 8, and game still goes on

#include <QApplication>

#include "mainform.h"

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