tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Sun, 16 Dec 2018 18:40:25 +0100
changeset 14461 9844450389a4
parent 11015 7a905f0070ce
permissions -rw-r--r--
Attempt to allow building video recording in pas2c mode, currently fails parsing

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

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

    return a.exec();
}