AIsOfCatan.HumanAgent.getSettlementPosition C# (CSharp) Method

getSettlementPosition() private method

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