Dominion.PlayerCircle.PassTurnLeft C# (CSharp) Method

PassTurnLeft() public method

public PassTurnLeft ( ) : void
return void
        public void PassTurnLeft()
        {
            this.currentPlayerIndex++;
            if (this.currentPlayerIndex >= this.players.Length)
            {
                this.currentPlayerIndex = 0;
            }
        }