tools/templates/main.cpp
author HSR
Thu, 01 Jul 2010 18:26:44 -0400
changeset 3605 5eb93322f6f1
parent 359 59fbfc65fbda
permissions -rw-r--r--
New music for City 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();
}