tools/templates/main.cpp
author unc0rr
Fri, 29 Aug 2008 19:40:37 +0000
changeset 1235 070629f3902d
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Set frontend's music volume level to 50% - Aware frontend of "Enable music" checkbox state - Don't load soundtrack if music is off

#include <QApplication>

#include "mainform.h"

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