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

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

View File

@@ -17,26 +17,26 @@
/**
* Creates a list of stations of which you are the owner.
* @ingroup AIList
* @ingroup ScriptList
*/
class AIStationList : public AIList {
class ScriptStationList : public ScriptList {
public:
/**
* @param station_type The type of station to make a list of stations for.
*/
AIStationList(AIStation::StationType station_type);
ScriptStationList(ScriptStation::StationType station_type);
};
/**
* Creates a list of stations which the vehicle has in its orders.
* @ingroup AIList
* @ingroup ScriptList
*/
class AIStationList_Vehicle : public AIList {
class ScriptStationList_Vehicle : public ScriptList {
public:
/**
* @param vehicle_id The vehicle to get the list of stations he has in its orders from.
*/
AIStationList_Vehicle(VehicleID vehicle_id);
ScriptStationList_Vehicle(VehicleID vehicle_id);
};
#endif /* SCRIPT_STATIONLIST_HPP */