summaryrefslogtreecommitdiff
path: root/src/script/api/script_engine.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/api/script_engine.hpp')
-rw-r--r--src/script/api/script_engine.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/script/api/script_engine.hpp b/src/script/api/script_engine.hpp
index e0d286939..d9e8419fa 100644
--- a/src/script/api/script_engine.hpp
+++ b/src/script/api/script_engine.hpp
@@ -250,6 +250,16 @@ public:
* @return The PlaneType the engine has.
*/
static ScriptAirport::PlaneType GetPlaneType(EngineID engine_id);
+
+ /**
+ * Get the maximum allowed distance between two orders for an engine.
+ * @param vehicle_id The engine to get the max distance for.
+ * @pre IsValidEngine(engine_id).
+ * @return The maximum distance between two orders for the engine
+ * or 0 if the distance is unlimited.
+ * @see ScriptOrder::GetOrderDistance
+ */
+ static uint GetMaximumOrderDistance(EngineID engine_id);
};
#endif /* SCRIPT_ENGINE_HPP */