tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Sun, 15 Apr 2018 18:20:34 +0200
changeset 13331 a4e7e62f2c0d
parent 11015 7a905f0070ce
permissions -rw-r--r--
Install platforms dir too

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

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

    return a.exec();
}