Browse Source

add the enumeration for the runway assignments

Sven Czarnian 3 years ago
parent
commit
68dbb0b7da
1 changed files with 6 additions and 0 deletions
  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