コード例 #1
0
 /// <summary>
 ///     Applies the bankruptcy state effects which consists of a decrease in popularity with the Army and Secret Police and also decrease the strength
 ///     of the Player and the Secret Police.
 /// </summary>
 public void ApplyBankruptcyEffects()
 {
     groupService.DecreasePopularity(GroupType.Army, 1);
     groupService.DecreasePopularity(GroupType.SecretPolice, 1);
     groupService.DecreaseStrength(GroupType.SecretPolice);
     governmentService.DecreasePlayerStrength();
 }