tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 15 Oct 2017 13:15:39 +0200
changeset 12704 c4ea9f8fb483
parent 359 59fbfc65fbda
permissions -rw-r--r--
Highlander: Mention the "max. 1 ammo per type" rule in mission panel

#include <QApplication>

#include "mainform.h"

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