tools/drawMapTest/main.cpp
author koda
Tue, 07 Feb 2012 00:34:25 +0100
changeset 6634 e00762923086
parent 4425 2314bb0c433d
permissions -rw-r--r--
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there

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

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