tools/templates/main.cpp
author unc0rr
Fri, 29 Nov 2013 15:53:46 +0400
changeset 9722 22dba2d8de93
parent 359 59fbfc65fbda
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 <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}