tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 05 Apr 2017 17:26:59 +0200
changeset 12167 e4294b5cc2e7
parent 11015 7a905f0070ce
permissions -rw-r--r--
Remove Lua function SetAmmoStore This function very obscure and has never been used, nobody will miss it. See issue #145 for full rationale.

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

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

    return a.exec();
}