PacManDuel.Models.PlayerPool.PlayerPool C# (CSharp) Method

PlayerPool() public method

public PlayerPool ( Player playerA, Player playerB ) : System.Collections.Generic
playerA Player
playerB Player
return System.Collections.Generic
        public PlayerPool(Player playerA, Player playerB)
        {
            _players = new List<Player> {playerA, playerB};
            _currentPlayerIndex = 1;
        }