AIsOfCatan.HumanAgent.getRoadPosition C# (CSharp) Метод

getRoadPosition() приватный Метод

private getRoadPosition ( ) : Edge
Результат 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()));
        }