tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Mon, 17 Apr 2017 18:47:56 +0200
changeset 12281 12f28d866c76
parent 4425 2314bb0c433d
permissions -rw-r--r--
Backed out changeset 8e9603088f99 Because unC0Rr, sheepluva and nemo like to know when their turn starts. This re-introduces the odd vows for revenge on every enemy turn start.

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

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