Exemplo n.º 1
0
        public static void MenuCityCheck()
        {
            string cityInput = Console.ReadLine();

            if (cityInput == "s")
            {
                Shop.ShopInTown();
                Shop.ShopInfo();
                Menu.ShopCityMenu();
            }
            else if (cityInput == "t")
            {
                Trips.TripSelction();
            }
            else if (cityInput == "b")
            {
                Console.Clear();
                MenuStart();
                SelectMenu();
            }
            else
            {
                Console.WriteLine("Wrong Input");
                MenuCityCheck();
            }
        }
Exemplo n.º 2
0
 public static void BackAfterCombat()
 {
     Console.Clear();
     Trips.TripSelectionInfo();
     Trips.TripSelction();
 }