Exemplo n.º 1
0
 /// <summary>
 /// Returns true if either this title is a revolt or any of its liegetitles are revolts
 /// </summary>
 public bool IsInRevolt()
 {
     if (IsRevolt)
     {
         return(true);
     }
     return(LiegeTitle?.IsInRevolt() ?? false);
 }
Exemplo n.º 2
0
 public CK2Title GetRevolt()
 {
     return(IsRevolt ? this : LiegeTitle?.GetRevolt());
 }
Exemplo n.º 3
0
 public CK2Title GetTopLiegeTitle()
 {
     return(LiegeTitle.GetTopLiegeTitle() ?? this);
 }