tools/drawMapTest/main.cpp
author koda
Sun, 09 Oct 2011 00:24:58 +0200
changeset 6107 0741c0f0203e
parent 4425 2314bb0c433d
permissions -rw-r--r--
some code refactoring of the ios game config

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

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