tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 30 Sep 2017 02:09:43 +0200
changeset 12606 f1e0fa009eb7
parent 11015 7a905f0070ce
permissions -rw-r--r--
ACF1: Change rope challenge confirm key to [Attack]

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

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

    return a.exec();
}