tools/drawMapTest/main.cpp
author nemo
Sun, 01 Dec 2013 13:22:06 -0500
changeset 9732 a13afa6c5d21
parent 4425 2314bb0c433d
permissions -rw-r--r--
don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn

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

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