tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Wed, 22 Mar 2023 20:42:48 +0100
changeset 15931 72f4638ee48b
parent 11015 7a905f0070ce
permissions -rw-r--r--
This is yet another (empty) testing commit for the world to admire.

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

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

    return a.exec();
}