tools/templates/main.cpp
author nemo
Sun, 24 Jan 2010 07:37:00 +0000
changeset 2704 51cda17b7c3b
parent 359 59fbfc65fbda
permissions -rw-r--r--
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.

#include <QApplication>

#include "mainform.h"

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