MoveCardBeingDiscardedToTrash() private method

private MoveCardBeingDiscardedToTrash ( GameState gameState ) : void
gameState GameState
return void
Ejemplo n.º 1
0
 public override void DoSpecializedDiscardFromPlay(PlayerState currentPlayer, GameState gameState)
 {
     if (currentPlayer.turnCounters.BuysUsed == 0)
     {
         currentPlayer.MoveCardBeingDiscardedToTrash(gameState);
         currentPlayer.GainCardFromSupply(Cards.Madman, gameState);
     }
 }