tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 31 May 2019 17:40:26 +0200
changeset 15091 9f2374425744
parent 11015 7a905f0070ce
permissions -rw-r--r--
ASA fruit02: Use pre-selected barrel positions and fewer barrels This should fix some extreme lag issues in this mission due to excessive flame spawns

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

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

    return a.exec();
}