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

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

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