public Person(City homeCity) { Console.WriteLine("Name your new villager!"); this.name = Console.ReadLine(); this.homeCity = homeCity; }
public Person(String name, City homeCity) { this.name = name; this.homeCity = homeCity; }