(svn r23355) -Codechange: rename all AI* to Script* (Rubidium)

This commit is contained in:
truebrain
2011-11-29 23:15:35 +00:00
parent afdb67a353
commit 98103121d4
175 changed files with 4048 additions and 4034 deletions

View File

@@ -16,36 +16,36 @@
/**
* Creates a list of industries that are currently on the map.
* @ingroup AIList
* @ingroup ScriptList
*/
class AIIndustryList : public AIList {
class ScriptIndustryList : public ScriptList {
public:
AIIndustryList();
ScriptIndustryList();
};
/**
* Creates a list of industries that accepts a given cargo.
* @ingroup AIList
* @ingroup ScriptList
*/
class AIIndustryList_CargoAccepting : public AIList {
class ScriptIndustryList_CargoAccepting : public ScriptList {
public:
/**
* @param cargo_id The cargo this industry should accept.
*/
AIIndustryList_CargoAccepting(CargoID cargo_id);
ScriptIndustryList_CargoAccepting(CargoID cargo_id);
};
/**
* Creates a list of industries that can produce a given cargo.
* @note It also contains industries that currently produces 0 units of the cargo.
* @ingroup AIList
* @ingroup ScriptList
*/
class AIIndustryList_CargoProducing : public AIList {
class ScriptIndustryList_CargoProducing : public ScriptList {
public:
/**
* @param cargo_id The cargo this industry should produce.
*/
AIIndustryList_CargoProducing(CargoID cargo_id);
ScriptIndustryList_CargoProducing(CargoID cargo_id);
};
#endif /* SCRIPT_INDUSTRYLIST_HPP */