tools/templates/main.cpp
author unc0rr
Thu, 18 Sep 2008 21:20:24 +0000
changeset 1268 34c3795ecb63
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix music starting to play after the round even if it was turned 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();
}