src/ai/api/ai_townlist.hpp
author rubidium
Sun, 15 Jul 2007 16:39:11 +0000
branchnoai
changeset 9668 6fe3d2cb9655
parent 9596 8af5a1399842
child 9772 c1035f0ac732
permissions -rw-r--r--
(svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
/* $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 */