tools/drawMapTest/main.cpp
author nemo
Sun, 15 Nov 2015 10:22:42 -0500
changeset 11389 c93f204a5a00
parent 4425 2314bb0c433d
permissions -rw-r--r--
Set gears that go off map to gmDestroy instead of collision, disable morewind for no-gravity gears, restrict application of wind to gears that are already moving and not colliding.

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

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