tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Mon, 17 Apr 2017 18:47:56 +0200
changeset 12276 12f28d866c76
parent 359 59fbfc65fbda
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 <QApplication>

#include "mainform.h"

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