tools/templates/main.cpp
author koda
Sun, 19 Sep 2010 04:12:03 +0200
changeset 3881 e570268a9d52
parent 359 59fbfc65fbda
permissions -rw-r--r--
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite) add the check for max 6 teams

#include <QApplication>

#include "mainform.h"

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