tools/drawMapTest/main.cpp
author nemo
Wed, 05 Jun 2013 12:47:33 -0400
changeset 9139 2ae44c4381cd
parent 4425 2314bb0c433d
permissions -rw-r--r--
Restore CurAmmoType check as well, that was removed in r8f317ba10675 when trying to fix aiming during alt attack. This probably fixes bug #657

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

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