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

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}