tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Thu, 05 Sep 2024 21:33:51 +0200
branchtransitional_engine
changeset 16030 842df792d6d6
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add install script for tiles

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

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

    return a.exec();
}