tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Thu, 10 Aug 2017 08:13:37 -0400
changeset 12454 8c5475bb4db7
parent 11015 7a905f0070ce
permissions -rw-r--r--
block spawning on ice slopes

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

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

    return a.exec();
}