tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 20 Apr 2016 19:04:22 +0200
changeset 12033 cbd9c1d41e06
parent 11015 7a905f0070ce
permissions -rw-r--r--
HedgeEditor: Don't change placement mode when air attack is not selected

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

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

    return a.exec();
}