tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Mon, 25 Sep 2017 15:34:07 +0200
changeset 12509 6dbdb6fab2f9
parent 4425 2314bb0c433d
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 <QtGui/QApplication>
#include "mainwindow.h"

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