tools/drawMapTest/main.cpp
author sheepluva
Fri, 29 Sep 2017 22:33:15 +0200
changeset 12593 d6bd8b327a09
parent 4425 2314bb0c433d
permissions -rw-r--r--
don't use colorkey for land spray this fixes issue #220

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

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