split sead and dead

change SEAD to engage in zone
This commit is contained in:
walterroach
2020-11-04 11:15:41 -06:00
committed by Dan Albert
parent 1f165835c6
commit f4d3660eac
4 changed files with 91 additions and 10 deletions

View File

@@ -168,6 +168,11 @@ class WaypointBuilder:
objective: MissionTarget) -> FlightWaypoint:
return self._ingress(FlightWaypointType.INGRESS_ESCORT, position,
objective)
def ingress_dead(self, position:Point,
objective: MissionTarget) -> FlightWaypoint:
return self._ingress(FlightWaypointType.INGRESS_DEAD, position,
objective)
def ingress_sead(self, position: Point,
objective: MissionTarget) -> FlightWaypoint: