tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 13 Dec 2018 23:21:19 +0100
changeset 14434 632dfc73cf83
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add more maps and theme credits in credits.csv

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

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

    return a.exec();
}