tools/templates/main.cpp
author koda
Wed, 06 Apr 2011 00:29:49 +0200
changeset 5109 6d2e8a24277e
parent 359 59fbfc65fbda
permissions -rw-r--r--
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable

#include <QApplication>

#include "mainform.h"

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