PacManDuel.Models.PlayerPool.PlayerPool C# (CSharp) 메소드

PlayerPool() 공개 메소드

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