Dominion.PlayerState.MoveDeckToDiscard C# (CSharp) 메소드

MoveDeckToDiscard() 개인적인 메소드

private MoveDeckToDiscard ( GameState gameState ) : void
gameState GameState
리턴 void
        internal void MoveDeckToDiscard(GameState gameState)
        {
            MoveAllCardsToDiscard(this.deck, gameState, DeckPlacement.Deck);
        }

Usage Example

예제 #1
0
 public override void DoSpecializedAction(PlayerState currentPlayer, GameState gameState)
 {
     if (currentPlayer.actions.ShouldPutDeckInDiscard(gameState))
     {
         currentPlayer.MoveDeckToDiscard(gameState);
     }
 }
PlayerState