tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Fri, 27 Jul 2018 12:45:10 -0400
branch0.9.24
changeset 13570 730e7837d9df
parent 11015 7a905f0070ce
permissions -rw-r--r--
sdlkeys is in source not binary, no .in folder. Locutus brought to our attention.

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

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

    return a.exec();
}