src/ai/api/ai_townlist.hpp
author truelight
Sun, 19 Aug 2007 13:31:04 +0000
branchnoai
changeset 9698 1d50fe99b7e9
parent 9596 8af5a1399842
child 9772 c1035f0ac732
permissions -rw-r--r--
(svn r10939) [NoAI] -Add: added AITileList valuator Water
[NoAI] -Add: added AITile::IsWater
/* $Id$ */

/** @file ai_townlist.hpp list all the towns */

#ifndef AI_TOWNLIST_HPP
#define AI_TOWNLIST_HPP

#include "ai_abstractlist.hpp"

/**
 * Class that creates a list of current towns.
 */
class AITownList : public AIAbstractList {
public:
	/**
	 * The name of the class, needed by several sub-processes.
	 */
	static const char *GetClassName() { return "AITownList"; }

	/**
	 * The constructor to make a list of towns.
	 */
	AITownList();
};

#endif /* AI_TOWNLIST_HPP */