示例#1
0
 public void ApplyTo(Game game)
 {
     game.NextTurn();
     if (game.CurrentPhase == GamePhase.Play)
     {
         if (!IsDeterminated)
         {
             SetDiceTotal(Game.RandomEventChance.GetNextDiceTotal());
         }
         _enrolmentInfo = game.DiceRoll(DiceTotal);
     }
 }