tools/drawMapTest/main.cpp
author sheepluva
Fri, 06 Dec 2013 22:48:30 +0100
changeset 9759 0efa9672c000
parent 4425 2314bb0c433d
permissions -rw-r--r--
* turned out the no-flight zone is also a no-climb-and-progress zone * also changed it to not completely nullify velocity (otherwise cliffjumpers can get stuck in midair), just make sure dy is not negative

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

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