tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Sat, 19 Oct 2019 09:34:37 -0400
changeset 15483 ea8fce926e4d
parent 11015 7a905f0070ce
permissions -rw-r--r--
256x256 png and xpm of hedgehog.svg

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

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

    return a.exec();
}