src/ai/api/ai_cargolist.hpp
author rubidium
Tue, 15 Apr 2008 15:34:02 +0000
branchnoai
changeset 10190 6e4a90ed8830
parent 9829 80fbe02a4184
child 11078 81b3bb4b6c53
permissions -rw-r--r--
(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 */