add the enumeration for the runway assignments
This commit is contained in:
@@ -1,7 +1,13 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
from enum import Enum
|
||||||
|
|
||||||
from aman.types.Runway import Runway
|
from aman.types.Runway import Runway
|
||||||
|
|
||||||
|
class RunwayAssignmentType(Enum):
|
||||||
|
AircraftType = 1
|
||||||
|
GateAssignment = 2
|
||||||
|
|
||||||
class RunwaySequencing:
|
class RunwaySequencing:
|
||||||
def __init__(self, runway : Runway):
|
def __init__(self, runway : Runway):
|
||||||
self.Runway = runway
|
self.Runway = runway
|
||||||
|
|||||||
Reference in New Issue
Block a user