tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 09 Apr 2016 06:09:59 +0200
changeset 11992 c3c7c036c521
parent 11015 7a905f0070ce
permissions -rw-r--r--
HedgeEditor: Fix teams being exported multiple times when saving multiple times in same session

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

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

    return a.exec();
}