tools/drawMapTest/main.cpp
author nemo
Tue, 07 Dec 2010 17:29:02 -0500
changeset 4479 59e11a5a3bfa
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add script hook onNewTurn to the end of AfterSwitchHedgehog. This should signal the very start of a new turn, immediately after CurrentTeam is switched.

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}