src/ai/api/ai_townlist.hpp
author truelight
Fri, 04 May 2007 22:59:59 +0000
branchnoai
changeset 9617 df9cedf12aab
parent 9596 8af5a1399842
child 9772 c1035f0ac732
permissions -rw-r--r--
(svn r9786) [NoAI] -Fix: NeighbourRoad -> NeighbourRoadCount
[NoAI] -Fix: move AITileListValuators self-defined checks to AITile so we can call it per tile (instead of only via AITileList)
/* $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 */