tools/templates/main.cpp
author sheepluva
Sun, 31 Oct 2010 02:50:15 +0100
changeset 4038 8972dd38bbad
parent 359 59fbfc65fbda
permissions -rw-r--r--
potential fix for issue #86: 'Objects behind a portal will sometimes go through the portal.' please test

#include <QApplication>

#include "mainform.h"

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