summaryrefslogtreecommitdiff
path: root/src/script/api/script_stationlist.hpp
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-11-29 23:15:35 +0000
committertruebrain <truebrain@openttd.org>2011-11-29 23:15:35 +0000
commit98103121d4f2ed1f1581919b7b1f343ccd410c12 (patch)
tree1e760dd6517a6b0f9fb669ec277139a8e3f9a4a3 /src/script/api/script_stationlist.hpp
parentafdb67a3534f85b4efbd3327ece8137211042d7b (diff)
downloadopenttd-98103121d4f2ed1f1581919b7b1f343ccd410c12.tar.xz
(svn r23355) -Codechange: rename all AI* to Script* (Rubidium)
Diffstat (limited to 'src/script/api/script_stationlist.hpp')
-rw-r--r--src/script/api/script_stationlist.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/script/api/script_stationlist.hpp b/src/script/api/script_stationlist.hpp
index 6894ecf41..84d509d2e 100644
--- a/src/script/api/script_stationlist.hpp
+++ b/src/script/api/script_stationlist.hpp
@@ -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 */