src/ai/api/ai_townlist.hpp
author truebrain
Sat, 23 Feb 2008 16:21:10 +0000
branchnoai
changeset 9746 e4ab7ea8d897
parent 9596 8af5a1399842
child 9772 c1035f0ac732
permissions -rw-r--r--
(svn r12226) [NoAI] -Fix: remove the dep for AIStationList_Vehicle on AIStationList, as Squirrel doesn't like it
/* $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 */