Add support for AAA objectives.

Fixes https://github.com/dcs-liberation/dcs_liberation/issues/999
This commit is contained in:
Dan Albert
2021-05-18 17:26:15 -07:00
parent dcbe12f1af
commit cd391a360c
19 changed files with 59 additions and 20 deletions

View File

@@ -135,6 +135,9 @@ class PresetLocations:
#: Locations of short range SAMs which should always be spawned.
required_short_range_sams: List[PointWithHeading] = field(default_factory=list)
#: Locations of AAA groups which should always be spawned.
required_aaa: List[PointWithHeading] = field(default_factory=list)
#: Locations of EWRs which should always be spawned.
required_ewrs: List[PointWithHeading] = field(default_factory=list)