private static void InitGame(TextGame textGame)
        {
            Room startingRoom = new Room("start", "You are in a dark room, you can see nothing.");

            textGame.AddRoom(startingRoom);
            textGame.SetStartRoom("start");
        }
 private static void InitGame(TextGame textGame)
 {
     Room startingRoom = new Room("start", "You are in a dark room, you can see nothing.");
     textGame.AddRoom(startingRoom);
     textGame.SetStartRoom("start");
 }