コード例 #1
0
ファイル: Game.cs プロジェクト: Dragwar/SD190-OOP-RPG
        }// End of the Stats Method

        /*
         * ========================================================================================
         * Inventory ---> Displays the Hero's Inventory and Equip Items from Inventory
         * ========================================================================================
         */
        private void Inventory()
        {
            Console.Clear();

            Hero.ManageInventory();

            Console.Title = $"Main Menu";
        }// End of the Inventory Method