tools/templates/main.cpp
author sheepluva
Sun, 19 Jan 2014 16:35:06 +0100
changeset 10020 67e127027af6
parent 359 59fbfc65fbda
permissions -rw-r--r--
small tweak/hax for blurry land to make tile borders vanish (when clamping is off)

#include <QApplication>

#include "mainform.h"

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