AIsOfCatan.HumanAgent.getRoadPosition C# (CSharp) Method

getRoadPosition() private method

private getRoadPosition ( ) : Edge
return Edge
        private Edge getRoadPosition()
        {
            Console.WriteLine("Enter 2 id's (each followed by enter) for tiles describing where to place the road");
            return new Edge(int.Parse(Console.ReadLine()), int.Parse(Console.ReadLine()));
        }