示例#1
0
 public Neighbors(Store store) : base(store)
 {
     this.store = store;
 }
示例#2
0
 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();
 }