コード例 #1
0
ファイル: Shop.cs プロジェクト: cmphayes/CMPH_OOP_RPG
 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();
 }