Explorar o código

add the enumeration for the runway assignments

Sven Czarnian %!s(int64=3) %!d(string=hai) anos
pai
achega
68dbb0b7da
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  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