tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 18 Jul 2015 02:44:36 +0200
changeset 11019 67ef02300508
parent 11015 7a905f0070ce
permissions -rw-r--r--
always draw border on terrain if there is only a map mask and no map image. this is a workaround for the fact that space campaign masks use white (lfObject) color instead of black (lfBasic)

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

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

    return a.exec();
}