tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Tue, 21 Jan 2025 22:14:28 +0100
changeset 16089 3f73daa3f212
parent 11015 7a905f0070ce
permissions -rw-r--r--
Adopt newer version of png lib

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

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

    return a.exec();
}