tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Mon, 25 Sep 2017 15:34:07 +0200
changeset 12509 6dbdb6fab2f9
parent 11015 7a905f0070ce
permissions -rw-r--r--
Remove explicit (and redundant) SD message in ACF mission 6 The SD message is already handld properly by the engine, no need to repeat it in Lua.

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

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

    return a.exec();
}