tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 21 Oct 2017 00:58:01 +0200
changeset 12724 d47ab9245259
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix PhysFS 3.0.0 deprecation warnings for error reporting

#include <QApplication>

#include "mainform.h"

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