tools/templates/main.cpp
author nemo
Sat, 27 Mar 2010 14:55:59 +0000
changeset 3109 06c089cb739c
parent 359 59fbfc65fbda
permissions -rw-r--r--
Reduce turns to -1 to allow processing health machine on first turn. Needs testing with Sudden Death set to 0

#include <QApplication>

#include "mainform.h"

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