tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 27 Nov 2016 03:18:20 +0100
changeset 12094 0183b4c448bf
parent 4425 2314bb0c433d
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 <QtGui/QApplication>
#include "mainwindow.h"

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