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

Player() public method

public Player ( String playerName, String workingPath, String executableFileName, char symbol ) : System
playerName String
workingPath String
executableFileName String
symbol char
return System
        public Player(String playerName, String workingPath, String executableFileName, char symbol)
        {
            _playerName = playerName;
            _workingPath = workingPath;
            _executableFileName = executableFileName;
            _score = 0;
            _numberOfPoisonPills = 1;
            _symbol = symbol;
        }