tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 14:08:43 +0100
changeset 12028 cfc2f087dccf
parent 11015 7a905f0070ce
permissions -rw-r--r--
HedgeEditor: Make landgun spawn in utility crates and sort list of ammo types to reflect the ammo menu ordering

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

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

    return a.exec();
}