src/ai/api/ai_enginelist.hpp
author truebrain
Fri, 06 Jun 2008 18:25:42 +0000
branchnoai
changeset 10844 affb2821fb9f
parent 9829 80fbe02a4184
permissions -rw-r--r--
(svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
[NoAI] -Fix [API CHANGE]: Rename AITown::GetNumHouses to AITown::GetHouseCount
-Note: this to be more uniform with the naming of the other Count() functions
/* $Id$ */

/** @file ai_enginelist.hpp List all the engines. */

#ifndef AI_ENGINELIST_HPP
#define AI_ENGINELIST_HPP

#include "ai_abstractlist.hpp"
#include "ai_vehicle.hpp"

/**
 * Create a list of engines based on a vehicle type.
 * @ingroup AIList
 */
class AIEngineList : public AIAbstractList {
public:
	static const char *GetClassName() { return "AIEngineList"; }

	/**
	 * @param vehicle_type The type of vehicle to make a list of engines for.
	 */
	AIEngineList(AIVehicle::VehicleType vehicle_type);
};

#endif /* AI_ENGINELIST_HPP */