summaryrefslogtreecommitdiff
path: root/src/script/api/script_waypointlist.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/api/script_waypointlist.hpp')
-rw-r--r--src/script/api/script_waypointlist.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/script/api/script_waypointlist.hpp b/src/script/api/script_waypointlist.hpp
index 9bbbd2731..8670879cb 100644
--- a/src/script/api/script_waypointlist.hpp
+++ b/src/script/api/script_waypointlist.hpp
@@ -17,26 +17,26 @@
/**
* Creates a list of waypoints of which you are the owner.
- * @ingroup AIList
+ * @ingroup ScriptList
*/
-class AIWaypointList : public AIList {
+class ScriptWaypointList : public ScriptList {
public:
/**
* @param waypoint_type The type of waypoint to make a list of waypoints for.
*/
- AIWaypointList(AIWaypoint::WaypointType waypoint_type);
+ ScriptWaypointList(ScriptWaypoint::WaypointType waypoint_type);
};
/**
* Creates a list of waypoints which the vehicle has in its orders.
- * @ingroup AIList
+ * @ingroup ScriptList
*/
-class AIWaypointList_Vehicle : public AIList {
+class ScriptWaypointList_Vehicle : public ScriptList {
public:
/**
* @param vehicle_id The vehicle to get the list of waypoints he has in its orders from.
*/
- AIWaypointList_Vehicle(VehicleID vehicle_id);
+ ScriptWaypointList_Vehicle(VehicleID vehicle_id);
};
#endif /* SCRIPT_WAYPOINTLIST_HPP */