(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

@@ -17,14 +17,14 @@
/**
* Creates a list of the locations of the depots (and hangars) of which you are the owner.
* @ingroup AIList
* @ingroup ScriptList
*/
class AIDepotList : public AIList {
class ScriptDepotList : public ScriptList {
public:
/**
* @param transport_type The type of transport to make a list of depots for.
*/
AIDepotList(AITile::TransportType transport_type);
ScriptDepotList(ScriptTile::TransportType transport_type);
};
#endif /* SCRIPT_DEPOTLIST_HPP */