Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var rouletteGame = new RouletteGame();

            Console.WriteLine(rouletteGame.SpinWheel().WinningBets);
            Console.WriteLine();
        }
Exemplo n.º 2
0
        public static void StartGame(int Wallet)
        {
            if (Wallet <= 0)
            {
                Console.WriteLine("You do no have enough Money to play. :( Thanks for comming by come back soon!");
                Environment.Exit(-1); //Will terminate the application.
            }
            if (Wallet > 0)
            {
                Wallet = RouletteGame.PlayRoulette(Wallet);
            }
            Console.WriteLine($"You now have ${Wallet}. Would you like to go again? \n\nEnter yes or no");
            string response = Console.ReadLine();

            if (response == "yes" || response == "Yes")
            {
                StartGame(Wallet);
            }
            if (response == "no" || response == "No")
            {
                Console.Clear();
                Console.WriteLine($"You are leaving with ${Wallet}! Hope you had fun come back soon!");
            }
        }