tools/drawMapTest/main.cpp
author sheepluva
Mon, 09 Nov 2015 19:21:40 +0100
changeset 11342 aa3f886c6298
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix hedgehog on parachute facing in wrong direction if parachute opens during double-jump

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

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