tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 16:33:01 +0100
changeset 12039 4524df2f7231
parent 11015 7a905f0070ce
permissions -rw-r--r--
Update changelog for the recent HedgeEditor updates

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

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

    return a.exec();
}