ff_i_area

Area functions.

string GetAreaInfo(object oArea)
Parameters:
  • oArea – An area.

Return the area resref and name suitable to printing to log.

Source code

// @code

//! @brief Return the area resref and name suitable to printing to log.
//! @param oArea An area.
string GetAreaInfo(object oArea);
string GetAreaInfo(object oArea)
{
  return GetResRef(oArea) + " (" + GetName(oArea) + ")";
}