tools/drawMapTest/main.cpp
author nemo
Tue, 13 Mar 2012 21:51:50 -0400
changeset 6782 33009ac4de80
parent 4425 2314bb0c433d
permissions -rw-r--r--
For reasons I can't fathom, if this portion isn't commented out, the AI completely fails w/ a weaponset of only firepunch. Something is seriously screwed up in RateShove, but after reading it many times, I still don't see it.

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

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