author | truebrain |
Mon, 31 Mar 2008 18:33:33 +0000 | |
branch | noai |
changeset 9851 | a5f5a7cf2b61 |
parent 9829 | 80fbe02a4184 |
child 11078 | 81b3bb4b6c53 |
permissions | -rw-r--r-- |
/* $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 */