src/ai/api/ai_townlist.cpp
author truebrain
Mon, 21 Apr 2008 20:52:54 +0000
branchnoai
changeset 10292 7856e972f8aa
parent 9833 89a64246458f
child 10339 ce6cd68d9eb8
permissions -rw-r--r--
(svn r12825) [NoAI] -Fix r12823: minor documentation clearup
/* $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);
	}
}