tools/templates/main.cpp
author koda
Sun, 28 Aug 2011 11:48:09 +0200
changeset 5697 e6630feefe88
parent 359 59fbfc65fbda
permissions -rw-r--r--
the return of SDL.patch D: contains fixes for double free at window destruction, touch interface and the minimum ios version supported

#include <QApplication>

#include "mainform.h"

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