Add livery-selector in AirWingConfigurationDialog

Resolves #1861
This commit is contained in:
Raffson
2022-08-14 14:20:59 +02:00
parent e9917ba00e
commit a8d6f90f55
4 changed files with 56 additions and 2 deletions

View File

@@ -74,6 +74,10 @@ class Coalition:
def country_name(self) -> str:
return self.faction.country
@property
def country_shortname(self) -> str:
return self.faction.country_shortname
@property
def opponent(self) -> Coalition:
assert self._opponent is not None