tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 26 Apr 2017 23:05:05 +0200
changeset 12344 877f55c77a3f
parent 11015 7a905f0070ce
permissions -rw-r--r--
Standardize the secret achievements strings in Lua scripts

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

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

    return a.exec();
}