Example #1
0
 public string GetWinText(BirdTypeData birdType)
 {
     return birdType.IsPredator ? PredatorWinText : PreyWinText;
 }
Example #2
0
 public string GetLossText(BirdTypeData birdType)
 {
     return birdType.IsPredator ? PredatorLossText : PreyLossText;
 }
Example #3
0
 public string GetWinConditionDescription(BirdTypeData birdType)
 {
     return birdType.IsPredator ? PredatorWinConditionDescription : PreyWinConditionDescription;
 }