tools/drawMapTest/main.cpp
author unc0rr
Fri, 29 Nov 2013 15:53:46 +0400
changeset 9722 22dba2d8de93
parent 4425 2314bb0c433d
permissions -rw-r--r--
Quick and simple dynamite AI without precalculated retreat and without accurate dynamite physics model (no bounce). Still does pretty well, using it mostly off cliffs.

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

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