tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 26 Apr 2017 17:52:08 +0200
changeset 12342 75b41f029aaa
parent 11015 7a905f0070ce
permissions -rw-r--r--
Refactor Frenzy script - Use GetAmmoName instead of hardcoding ammo names into strings - Remove Tracker - Make texts a bit more translator-friendly

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

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

    return a.exec();
}