tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Sun, 12 Feb 2023 15:10:10 +0100
branchtransitional_engine
changeset 15949 659c92124c26
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix some bugs

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

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

    return a.exec();
}