tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Mon, 03 Sep 2018 20:01:50 +0200
changeset 13754 f1c66a34f2fe
parent 4425 2314bb0c433d
permissions -rw-r--r--
Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set Fixes bug #585

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

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