tools/templates/main.cpp
author nemo
Fri, 26 Aug 2011 20:59:55 -0400
changeset 5687 fac606654317
parent 359 59fbfc65fbda
permissions -rw-r--r--
Die speckles, round N. Check that alpha is not basically empty while blending, try to match the damaged land type.

#include <QApplication>

#include "mainform.h"

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