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

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}