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

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}