tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sun, 24 Apr 2016 16:51:31 +0200
changeset 11696 bf7899e6359a
parent 11015 7a905f0070ce
permissions -rw-r--r--
merge Wuzzy's game modifier buttons reorder patch

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

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

    return a.exec();
}