tools/templates/main.cpp
author sheepluva
Wed, 29 Dec 2010 15:57:13 +0100
changeset 4776 ab956d4647a4
parent 359 59fbfc65fbda
permissions -rw-r--r--
set windspeed to 0 at the very beginning of the game. (fixes DisableWind game modifier)

#include <QApplication>

#include "mainform.h"

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