tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 23 Sep 2017 07:38:41 +0200
changeset 12499 d97050a7c074
parent 11015 7a905f0070ce
permissions -rw-r--r--
Stop PhysFS from complaining when a random name .cfg file is missing

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

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

    return a.exec();
}