tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 20 Oct 2017 21:35:26 +0200
changeset 12719 637b1987570e
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix first ammo row being invisible when there's only one weapon in the first row

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

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

    return a.exec();
}