tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Wed, 31 Oct 2018 23:36:05 +0100
changeset 14056 8a0d69c16cad
parent 11015 7a905f0070ce
permissions -rw-r--r--
Implement OutlinePoints for land generators, some ground work for template based landgen

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

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

    return a.exec();
}