tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 27 Nov 2016 03:18:20 +0100
changeset 12089 0183b4c448bf
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix Killing the Specialists giving you a free turn after killing Desert Eagle with a desert eagle with shot 1-3

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

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

    return a.exec();
}