tools/templates/main.cpp
author nemo
Sun, 24 Jan 2010 16:24:24 +0000
changeset 2707 633cac1d6f9a
parent 359 59fbfc65fbda
permissions -rw-r--r--
Olympics theme, Ruler map training map and a bunch of new textures for the more "3d" terrain thingy Smaxx added.

#include <QApplication>

#include "mainform.h"

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