tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 15 Oct 2017 12:30:31 +0200
changeset 12703 6726d5edfdfb
parent 359 59fbfc65fbda
permissions -rw-r--r--
Loyal Highlander: loyal=true in Highlander script param, you only get stuff for *enemy* kills Normal Highlander is of course not affected by this. This setting is optional.

#include <QApplication>

#include "mainform.h"

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