tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 15:57:45 +0100
changeset 12037 efa3b1837d63
parent 11015 7a905f0070ce
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 "mainwindow.h"
#include <QApplication>

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

    return a.exec();
}