tools/templates/main.cpp
author sheepluva
Tue, 17 Jun 2014 23:53:59 +0200
changeset 10322 6f1f8515181c
parent 359 59fbfc65fbda
permissions -rw-r--r--
fix typo that caused visual glitch in water body (e.g. visible on that particular screenie on bottom right corner)

#include <QApplication>

#include "mainform.h"

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