(svn r12721) [NoAI] -Fix: also check articulated parts when determinine the capacity of an unbuilt vehicle.
/* $Id$ */
/** @file ai_cargolist.hpp List all the cargos */
#ifndef AI_CARGOLIST_HPP
#define AI_CARGOLIST_HPP
#include "ai_abstractlist.hpp"
/**
* Creates a list of cargos that can be produced in the current game.
* @ingroup AIList
*/
class AICargoList : public AIAbstractList {
public:
static const char *GetClassName() { return "AICargoList"; }
AICargoList();
};
#endif /* AI_CARGOLIST_HPP */