tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Tue, 21 May 2024 14:38:30 +0200
changeset 16017 e8afb1bf2779
parent 11015 7a905f0070ce
permissions -rw-r--r--
Implement triggering advancement of simulation in qmlfrontend

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

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

    return a.exec();
}