(svn r12519) [NoAI] -Add: added AILog with Info(), Warning(), and Error()
[NoAI] -Add: redirect AI outputs to the AI Debug GUI to show it per AI, in a clear way ingame (no more need for stderr viewing)
NOTE: it still does output to stderr, but on an other DEBUG() level (depending on the message).
/* $Id$ *//** @file ai_townlist.cpp Implementation of AITownList and friends. */#include "ai_townlist.hpp"#include "../../town.h"AITownList::AITownList(){ Town *t; FOR_ALL_TOWNS(t) { this->AddItem(t->index); }}