tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Sun, 01 Nov 2015 15:08:39 -0500
changeset 11272 9621fdcad965
parent 11015 7a905f0070ce
permissions -rw-r--r--
do the same thing for the chute/birdy/saucer block

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

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

    return a.exec();
}