tools/drawMapTest/main.cpp
author nemo
Sun, 07 Dec 2014 14:36:28 -0500
changeset 10633 2f062fac5791
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add that "make screenshots of Land/LandPixels" thing for map creators

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

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