tools/templates/main.cpp
author unc0rr
Fri, 25 Jul 2008 19:26:44 +0000
changeset 1097 06b15817b8a0
parent 359 59fbfc65fbda
permissions -rw-r--r--
Enable music dependance on current land theme

#include <QApplication>

#include "mainform.h"

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