tools/templates/main.cpp
author unc0rr
Wed, 13 May 2009 19:53:45 +0000
changeset 2051 949fe7df09b6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix engine crash due to screwing up visual gears list in speechbubbles handler

#include <QApplication>

#include "mainform.h"

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