tools/drawMapTest/main.cpp
author unc0rr
Tue, 26 Jul 2011 17:28:55 +0400
changeset 5422 0daf3d8e4b70
parent 4425 2314bb0c433d
permissions -rw-r--r--
Make AI much more wise (fix a bug preventing AI to explore caves)

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

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