tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Mar 2018 01:28:15 +0100
changeset 13153 2a53b598c1ae
parent 11015 7a905f0070ce
permissions -rw-r--r--
Reduce number of minigun bullets from 71 to 70 Not that it changes much ... :D

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

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

    return a.exec();
}