tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 24 Oct 2017 04:48:20 +0200
changeset 12754 1df909b46c05
parent 359 59fbfc65fbda
permissions -rw-r--r--
Lua API: Fix Goals text being cut off at ca. 255 characters

#include <QApplication>

#include "mainform.h"

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