Example #1
0
 public bool isFrontLines(Country c)
 {
     bool isFrontLines = false;
     foreach (Country n in c)
     {
         if (n.getOwner() != c.getOwner())
         {
             isFrontLines = true;
             break;
         }
     }
     return isFrontLines;
 }
Example #2
0
 bool isEmphasized(Country c)
 {
     if (c.getOwner() == noone)
         return true;
     if (OptionsMenuScreen.currentMap == OptionsMenuScreen.Map.World)
     {
         return c.contIsControlled;
     }
     return true;
 }