tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 15 Mar 2018 04:33:11 +0100
changeset 13216 95311e220eb6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border

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

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