tools/templates/main.cpp
author Henek
Wed, 30 Nov 2011 23:16:44 +0100
changeset 6472 bced12412f94
parent 359 59fbfc65fbda
permissions -rw-r--r--
present somthing that could be taken as a structure enable structures again disable sudden death music as a mood effect

#include <QApplication>

#include "mainform.h"

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