tools/drawMapTest/main.cpp
author nemo
Thu, 14 Apr 2011 18:17:30 -0400
changeset 5145 120f4271f197
parent 4425 2314bb0c433d
permissions -rw-r--r--
adjust crosshair criteria again. this should take care of sniper rifle and crosshair after attacking

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

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