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

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

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

    return a.exec();
}