tools/templates/main.cpp
author sheepluva
Tue, 10 Jun 2014 17:34:32 +0200
changeset 10268 1155384a4e31
parent 359 59fbfc65fbda
permissions -rw-r--r--
"<unC0Rr> could also refuse to update textures when land changes if the tile isn't visible" You had me at "refuse" <3

#include <QApplication>

#include "mainform.h"

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