tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 11 Oct 2017 20:16:00 +0200
changeset 12691 286afe079117
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix rope angle possible to go below 0° if having secondary weapon selected

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

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

    return a.exec();
}