tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 21 Oct 2017 17:21:34 +0200
changeset 12732 23fb2179945f
parent 11015 7a905f0070ce
permissions -rw-r--r--
Sniper rifle mission: Fix targets spawning twice in dynamite scenes, jacking up the total amount of targets

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

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

    return a.exec();
}