src/ai/api/ai_townlist.hpp
author truebrain
Wed, 27 Feb 2008 21:07:31 +0000
branchnoai
changeset 9792 e1222f4674c2
parent 9778 38560cd27070
child 9816 35e866676c00
permissions -rw-r--r--
(svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
/* $Id$ */

/** @file ai_townlist.hpp list all the towns */
/** @defgroup AITownList AITownList - Valuators and lists working on/with AITownList */

#ifndef AI_TOWNLIST_HPP
#define AI_TOWNLIST_HPP

#include "ai_abstractlist.hpp"

/**
 * Creates a list of towns that are currently on the map.
 * @ingroup AITownList
 */
class AITownList : public AIAbstractList {
public:
	static const char *GetClassName() { return "AITownList"; }
	AITownList();

private:
	const char *GetListName() const { return "AITownList"; }
};

#endif /* AI_TOWNLIST_HPP */