tools/drawMapTest/main.cpp
author Henek
Fri, 17 Dec 2010 19:27:02 +0100
changeset 4551 05c32ee166b6
parent 4425 2314bb0c433d
permissions -rw-r--r--
added replacement of "_" to " " in gameplay scripts

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}