tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Mon, 30 Jan 2023 15:50:14 +0100
branchtransitional_engine
changeset 15942 6e22f4390b7e
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add basics of wavefront collapse algorithm

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

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

    return a.exec();
}