tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Fri, 30 Mar 2018 10:03:29 -0400
changeset 13302 6313386c851e
parent 11015 7a905f0070ce
permissions -rw-r--r--
simple optimised svg of the low detail hedgehog for use in .desktop files and such

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

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

    return a.exec();
}