コード例 #1
0
        //Display money count Sugar
        public static void DisplayMoneyCountSugar(Store store, Player player, int numberOfItem)
        {
            decimal countMoneySugar = store.CountSugarPrice(numberOfItem);

            Console.WriteLine($"Wallet: ${player.wallet.money}");
        }