tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 09 Apr 2016 08:59:29 +0200
changeset 12002 a2f0c0d0e534
parent 11015 7a905f0070ce
permissions -rw-r--r--
HedgeEditor: Allow to modify dud mine health

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

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

    return a.exec();
}