tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Mon, 20 Mar 2017 08:58:30 -0400
changeset 12150 bbefbd1a3b0a
parent 11015 7a905f0070ce
permissions -rw-r--r--
sanity cutoff for splash sound

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

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

    return a.exec();
}