tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sun, 14 May 2017 15:20:26 +0200
changeset 12419 d43ded9a0c34
parent 11015 7a905f0070ce
permissions -rw-r--r--
Remove IceGun from default Highlander weaponset

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

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

    return a.exec();
}