8 lines
186 B
Python
8 lines
186 B
Python
#!/usr/bin/env python
|
|
|
|
from aman.types.Runway import Runway
|
|
|
|
class RunwaySequencing:
|
|
def __init__(self, runway : Runway):
|
|
self.Runway = runway
|
|
self.Spacing = 3 |