tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 31 Aug 2018 21:07:07 +0200
changeset 13724 a62408ee8281
parent 359 59fbfc65fbda
permissions -rw-r--r--
Allow script to be missing when calling HedgewarsScriptLoad, return true/false based on success

#include <QApplication>

#include "mainform.h"

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