summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_cargolist.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-08-19 15:37:28 +0000
committeryexo <yexo@openttd.org>2010-08-19 15:37:28 +0000
commitdc303e550bec650220038b727e4915f2e502a5a4 (patch)
tree3e882c182bd41904d817cef6132358ca370a96ec /src/ai/api/ai_cargolist.hpp
parent6c7384cabd9ffe684697f98a65a32871500284f8 (diff)
downloadopenttd-dc303e550bec650220038b727e4915f2e502a5a4.tar.xz
(svn r20563) -Change: [NoAI] rename AIAbstractList to AIList
Diffstat (limited to 'src/ai/api/ai_cargolist.hpp')
-rw-r--r--src/ai/api/ai_cargolist.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ai/api/ai_cargolist.hpp b/src/ai/api/ai_cargolist.hpp
index a933c1fc5..f4449466b 100644
--- a/src/ai/api/ai_cargolist.hpp
+++ b/src/ai/api/ai_cargolist.hpp
@@ -12,13 +12,13 @@
#ifndef AI_CARGOLIST_HPP
#define AI_CARGOLIST_HPP
-#include "ai_abstractlist.hpp"
+#include "ai_list.hpp"
/**
* Creates a list of cargos that can be produced in the current game.
* @ingroup AIList
*/
-class AICargoList : public AIAbstractList {
+class AICargoList : public AIList {
public:
/** Get the name of this class to identify it towards squirrel. */
static const char *GetClassName() { return "AICargoList"; }
@@ -31,7 +31,7 @@ public:
* by this industry, @see AIIndustry::IsCargoAccepted.
* @ingroup AIList
*/
-class AICargoList_IndustryAccepting : public AIAbstractList {
+class AICargoList_IndustryAccepting : public AIList {
public:
/** Get the name of this class to identify it towards squirrel. */
static const char *GetClassName() { return "AICargoList_IndustryAccepting"; }
@@ -46,7 +46,7 @@ public:
* Creates a list of cargos that the given industry can produce.
* @ingroup AIList
*/
-class AICargoList_IndustryProducing : public AIAbstractList {
+class AICargoList_IndustryProducing : public AIList {
public:
/** Get the name of this class to identify it towards squirrel. */
static const char *GetClassName() { return "AICargoList_IndustryProducing"; }