tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 13 Apr 2016 02:44:37 +0200
changeset 11726 4addfad422ab
parent 11015 7a905f0070ce
permissions -rw-r--r--
Construction Mode: Recognize health case amount from game scheme

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

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

    return a.exec();
}