tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 05 Oct 2017 01:37:49 +0200
changeset 12649 2837dee472cc
parent 4425 2314bb0c433d
permissions -rw-r--r--
Show selected weapon again when using it in inf attack mode This is useful if you have e.g. lots of (finite) bazookas; it's easy to lose track of the amount of remaining bazookas. Not displayed for weapons which always end your turn.

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

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