- CHIEF: added tactical overview
This commit is contained in:
Frank
2022-03-25 12:50:45 +01:00
parent 24559c475b
commit 9d703c0af6
3 changed files with 112 additions and 9 deletions

View File

@@ -413,6 +413,13 @@ function OPSZONE:GetOwner()
return self.ownerCurrent
end
--- Get coalition name of current owner of the zone.
-- @param #OPSZONE self
-- @return #string Owner coalition.
function OPSZONE:GetOwnerName()
return UTILS.GetCoalitionName(self.ownerCurrent)
end
--- Get coordinate of zone.
-- @param #OPSZONE self
-- @return Core.Point#COORDINATE Coordinate of the zone.
@@ -421,7 +428,7 @@ function OPSZONE:GetCoordinate()
return coordinate
end
--- Get name.
--- Get zone name.
-- @param #OPSZONE self
-- @return #string Name of the zone.
function OPSZONE:GetName()