tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 04 Sep 2018 20:38:15 +0200
changeset 13762 f5eea79da795
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix crash when defeating all enemies in ACF8 (HideHog was called too early)

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

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

    return a.exec();
}