瀏覽代碼

add the enumeration for the runway assignments

Sven Czarnian 3 年之前
父節點
當前提交
68dbb0b7da
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      aman/config/RunwaySequencing.py

+ 6 - 0
aman/config/RunwaySequencing.py

@@ -1,7 +1,13 @@
 #!/usr/bin/env python
 
+from enum import Enum
+
 from aman.types.Runway import Runway
 
+class RunwayAssignmentType(Enum):
+    AircraftType = 1
+    GateAssignment = 2
+
 class RunwaySequencing:
     def __init__(self, runway : Runway):
         self.Runway = runway