tools/drawMapTest/main.cpp
author sheepluva
Thu, 28 Feb 2013 19:59:42 +0100
changeset 8600 39a31fecbc3d
parent 4425 2314bb0c433d
permissions -rw-r--r--
small update of german engine translation

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

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