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

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

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