tools/drawMapTest/main.cpp
author sheepluva
Sat, 10 Oct 2015 18:18:26 +0200
changeset 11204 3ff617fccc67
parent 4425 2314bb0c433d
permissions -rw-r--r--
Lua-API: onSuddenDeath hook

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

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