public Neighbors(Store store) : base(store) { this.store = store; }
public static void OutOfMoney(Store store) { Console.WriteLine("You do not have enough money to continue the game."); Console.WriteLine("Take your $" + store.inventory.moneyCounter + " home and rethink your life."); Console.ReadLine(); }