Files @ r12094:b6fd573b163f
Branch filter:

Location: cpp/openttd-patchpack/source/src/ai/api/ai_townlist.cpp

rubidium
(svn r16510) -Doc: silence some (AI) doxygen warnings by adding comments about the appropriate things.
/* $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);
	}
}