tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 11 Oct 2017 17:05:35 -0400
changeset 12693 2592c6ea6008
parent 11015 7a905f0070ce
permissions -rw-r--r--
wind blowing around mines off-turn was too annoying.

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

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

    return a.exec();
}