tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Wed, 04 Jan 2023 10:40:40 +0100
branchtransitional_engine
changeset 15903 230dc46487ea
parent 11015 7a905f0070ce
permissions -rw-r--r--
Update mapgen to take into account actual values for 'zero' and 'basic' colors

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

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

    return a.exec();
}