tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Sun, 11 Dec 2016 18:00:10 -0500
changeset 12110 f214d6315b71
parent 11015 7a905f0070ce
permissions -rw-r--r--
requested by CopherNeue - make "flatten-flakes" only exclude the foreground layers. testing on eyes/halloween seems ok.

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

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

    return a.exec();
}