tools/templates/main.cpp
author sheepluva
Tue, 17 Jun 2014 16:10:43 +0200
changeset 10320 0f9ad60f738c
parent 359 59fbfc65fbda
permissions -rw-r--r--
fix some (newly introduces) glitches with normal water

#include <QApplication>

#include "mainform.h"

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