tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sun, 02 Oct 2016 00:42:29 +0200
changeset 11858 38fd32724a61
parent 11015 7a905f0070ce
permissions -rw-r--r--
and while I'm at it, fix seduction... kinda ♥

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

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

    return a.exec();
}