public Player() { m_playerName = ConsoleUI.AskForPlayerName(); m_playerType = e_PlayerType.Human; m_playerPosition = e_PlayerPosition.Bottom; m_playerPoints = 0; }
public Player(string i_inputName) { m_playerName = i_inputName; m_playerType = e_PlayerType.Computer; m_playerPosition = e_PlayerPosition.Top; m_playerPoints = 0; }
public Player(string i_inputName) { m_playerName = i_inputName; m_playerType = e_PlayerType.Human; m_playerPosition = e_PlayerPosition.Bottom; m_playerPoints = 0; }