16 lines
358 B
Python
16 lines
358 B
Python
from . import Mission
|
|
|
|
|
|
class StationBuildMission(Mission):
|
|
pass
|
|
|
|
|
|
# Ship part package to LKO
|
|
# if destination not Kerbin:
|
|
# Transfer part package to Right orbit
|
|
# if station core not in package:
|
|
# Rendez-vous with station (if station core not in package)
|
|
# separate package
|
|
# for each part:
|
|
# Determine connection ports and angle
|
|
# Start docking |