tools/templates/main.cpp
author koda
Sun, 03 Oct 2010 00:23:05 +0200
changeset 3923 694e6f6e0e30
parent 359 59fbfc65fbda
permissions -rw-r--r--
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames) added the patch for compiling SDL

#include <QApplication>

#include "mainform.h"

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