(svn r13654) [NoAI] -Change [API CHANGE]: moved AISetting::SetCommandDelay to AIController::SetCommandDelay, as it was silly to have it in a seperate class, while it was part of the controller.
/* $Id$ */
/** @file ai_townlist.cpp Implementation of AITownList and friends. */
#include "ai_townlist.hpp"
#include "../../openttd.h"
#include "../../town.h"
AITownList::AITownList()
{
Town *t;
FOR_ALL_TOWNS(t) {
this->AddItem(t->index);
}
}