Beispiel #1
0
        public static void LeaveHall()
        {
            Console.WriteLine("Where will you start? \nKitchen: K\nLiving Room: L\nUpstairs: U");
            string input = "";

            input = Console.ReadLine(); {
                if (input == "K" || input == "k")
                {
                    Kitchen.EnterKitchen();
                }
                else
                if (input == "L" || input == "l")
                {
                    LivingRoom.EnterLivingRoom();
                }
                else
                if (input == "U" || input == "u")
                {
                    Upstairs.GoUpstairs();
                }
                else
                {
                    Game.Die();
                }
            }
        }
Beispiel #2
0
 internal static void EnterLivingRoom()
 {
     Console.WriteLine("\n\nWalk around the room, where to start? Go to the chair on it's side and set it right. There's a pillow or something behind it.\nReach down to get ir- it feels a little odd. It's not a pillow after all, it's Pepsi the Poodle. Dead.\nAnd from the feel of it, she was a goner way before last night. Ugh. better go to the kitchen and get a trash bag or something.\n");
     Kitchen.EnterKitchen();
 }