src/ai/api/ai_vehiclelist.hpp
author truelight
Thu, 12 Jul 2007 14:52:33 +0000
branchnoai
changeset 9632 1816329e9cdd
parent 9614 814c3bbf8ecc
child 9647 c17046b1b8a2
permissions -rw-r--r--
(svn r10523) [NoAI] -Fix: typo in comment for AIVehicleList()
/* $Id$ */

/** @file ai_vehiclelist.hpp list all the vehicles (you own) */

#ifndef AI_VEHICLELIST_HPP
#define AI_VEHICLELIST_HPP

#include "ai_abstractlist.hpp"

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

	/**
	 * The constructor to make a list of vehicles.
	 */
	AIVehicleList();
};

#endif /* AI_VEHICLELIST_HPP */