tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 10 Dec 2016 21:28:10 +0100
changeset 12112 0695302f3f5f
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix ScriptExists() destroying lua stack (fixes bug #146)

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

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

    return a.exec();
}