From ba4ff5c9e97e07ba989278c0b4a237fb8c691d05 Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 7 Jan 2024 10:29:31 +0100 Subject: [PATCH] Update Procedure.lua --- Moose Development/Moose/Navigation/Procedure.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Moose Development/Moose/Navigation/Procedure.lua b/Moose Development/Moose/Navigation/Procedure.lua index 8dd4a4853..3b364545e 100644 --- a/Moose Development/Moose/Navigation/Procedure.lua +++ b/Moose Development/Moose/Navigation/Procedure.lua @@ -69,9 +69,11 @@ APPROACH = { --- Type of approach. -- @type APPROACH.Type +-- @field #string VFR Visual Flight Rules. -- @field #string VOR VOR -- @field #string NDB NDB APPROACH.Type={ + VFR="VFR", VOR="VOR", ILS="ILS", } @@ -113,9 +115,9 @@ APPROACH.version="0.0.1" --- Create a new APPROACH class instance. -- @param #APPROACH self +-- @param #string Type Type of approach (ILS, VOR, LOC). -- @param Wrapper.Airbase#AIRBASE Airbase The airbase or name of the airbase. -- @param Wrapper.Airbase#AIRBASE.Runway Runway The runway or name of the runway. --- @param #string Type Type of approach (ILS, VOR, LOC). -- @return #APPROACH self function APPROACH:New(Type, Airbase, Runway)