tools/templates/main.cpp
author koda
Sat, 03 Jul 2010 01:31:18 +0200
changeset 3612 b50215a8a43d
parent 359 59fbfc65fbda
permissions -rw-r--r--
land arrays are allocated dynamically, so DOWNSCALE and LOWRES macros are now removed and replaced by run time flags rqBlurryLand and rqLowRes

#include <QApplication>

#include "mainform.h"

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