MoveDeckToDiscard() private method

private MoveDeckToDiscard ( GameState gameState ) : void
gameState GameState
return void
 public override void DoSpecializedAction(PlayerState currentPlayer, GameState gameState)
 {
     if (currentPlayer.actions.ShouldPutDeckInDiscard(gameState))
     {
         currentPlayer.MoveDeckToDiscard(gameState);
     }
 }