tools/templates/main.cpp
author koda
Sun, 24 Jan 2010 19:52:30 +0000
changeset 2714 c85ffe57d971
parent 359 59fbfc65fbda
permissions -rw-r--r--
update iphone frontend to the new (silly) sdl api, code cleanups for other sections

#include <QApplication>

#include "mainform.h"

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