tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 15:57:45 +0100
changeset 12037 efa3b1837d63
parent 4425 2314bb0c433d
permissions -rw-r--r--
Set minimum ammo box content of 1 for default ammo schemes Because they frequently get copied, and having 0 ammo in a box is odd

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

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