示例#1
0
 public void ShowShopInventory()
 {
     ItemCatalog.Clear();
     ListWeapons();
     ListArmors();
     ListPotions();
 }
示例#2
0
 void ShowInventory()
 {
     Console.WriteLine($"Here is what we have in stock as of today, {DateTime.Now}");
     ItemCatalog.Clear();
     ShopListWeapons();
     ShopListArmors();
     ShopListPotions();
 }