tools/drawMapTest/main.cpp
author nemo
Sat, 14 Dec 2013 14:24:03 -0500
changeset 9795 487e5675061f
parent 4425 2314bb0c433d
permissions -rw-r--r--
clear gstCollision from doStepFallingGear once I'm done with it. hog "physics" doesn't use it, and was screwing up labels

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

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