tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Thu, 22 Oct 2020 13:27:49 +0200
changeset 15754 aa011799cb63
parent 11015 7a905f0070ce
permissions -rw-r--r--
Reduce the amount of parens in pas2c output for prettier result, hopefully not breaking anything

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

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

    return a.exec();
}