Exemple #1
0
        //Display money count Cup
        public static void DisplayMoneyCountCup(Store store, Player player, int numberOfItem)
        {
            decimal countMoneyCup = store.CountCupPrice(numberOfItem);

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