public static void hallway()
        {
            Console.Clear();
            WriteLine("You start down the Hall.");
            WriteLine("The hall has a few spots where light bulbs would normally be set. However, only one bulb is in and lit, making the hall a bit gloomy.");
            WriteLine("You notice 3 separate doors on your left; they could be closets or storage spaces but all 3 doors are closed.");
            WriteLine("The hall ends at a 'T'-intersection with another hallway; where that hall ends, there is a door leading into another room.");
            WriteLine("Press 'Enter' to continue.");
            Console.ReadLine();

            WriteLine("|       -------------\\---------");
            WriteLine("|                               ");
            WriteLine("|       -----------        -----");
            WriteLine("|       | Util.    \\       |    ");
            WriteLine("|       -----------        |    ");
            WriteLine("|       |         \\        |    ");
            WriteLine("|       | Closet2 |        |    ");
            WriteLine("|       -----------        |    ");
            WriteLine("|       |         \\  Hall  |    ");
            WriteLine("|       | Closet1 |        |    ");
            WriteLine("|       ----------|        |----|");
            WriteLine("|       |           Entry       |");

            WriteLine("What would you like to do?");
            WriteLine("Enter '0' to Quit the program\nEnter '1' to check the nearest Door\nEnter '2' to check the Middle Door\nEnter '3' to check the Far Door\nEnter '4' to continue to the End of the Hall");

            var hallChoice = Int32.Parse(Console.ReadLine());

            switch (hallChoice)
            {
            case 1:
                Encounters.hallCloset2();
                break;

            case 2:
                ItemSearches.nothing();
                break;

            case 3:
                ItemSearches.nothing();             // change/update
                break;

            case 4:
                Backhouse.tHall();
                break;

            default:
                WriteLine("You have exited the program.");
                break;
            }
        }
        public static void bedroomChoose()
        {
            WriteLine("|--------\\--------------\\----|     ");
            WriteLine("|                   |          |     ");
            WriteLine("|                   | Bathroom |     ");
            WriteLine("|     Bedroom       \\         |     ");
            WriteLine("|                   |          |     ");
            WriteLine("|------------------------------|     ");
            WriteLine("|                              |     ");
            WriteLine("|                              |     ");
            WriteLine("|            STUDY             |     ");
            WriteLine("|------------------------------|     ");

            WriteLine("What would you like to do next?");

            WriteLine("Enter '1' to check the Bathroom\nEnter '2' to check the Closet\nEnter '3' to check the Cabinet\nEnter '4' to Leave the bedroom\nEnter Anythng else to Quit the program.");
            Console.ReadLine();

            var bedroomChoice = Int32.Parse(Console.ReadLine());

            switch (bedroomChoice)
            {
            case 1:
                //Bathroom
                bathroom();
                break;

            case 2:
                //Bedroom Closet - nothing
                ItemSearches.nothing();
                break;

            case 3:
                //Cabinet - ?
                WriteLine("Other than the knick-knacks, the only thing you find of interest is a piece of paper, with the number '7521' written on it.\nYou decide to check the bathroom before leaving.");
                bathroom();
                break;

            case 4:
                WriteLine("You leave the bedroom. Press 'Enter' to continue.");
                Console.ReadLine();
                Backhouse.tHallChoose();            // check this branch
                break;

            default:
                WriteLine("You have exited the program.");
                break;
            }
        }