Example #1
0
 private bool PlayerOwnsAllCountriesOfGivenContinent(EContinent continent)
 {
     return(gameInformation.GetAllCountries().Where(c => c.Continent == continent).All(c => c.Owner == player));
 }