tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Mon, 03 Feb 2025 15:03:26 +0100
changeset 16110 ac8a3f377197
parent 11015 7a905f0070ce
permissions -rw-r--r--
Tune shoppa tile set for better results

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

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

    return a.exec();
}