public void SetupDetective()
        {
            gameClient.ConsoleMessage("\nLocation: " + gameData.GetStartingLocation().Name + "\n");
            gameClient.ConsoleMessage("You see before you ");
            gameClient.ConsoleMessage(gameData.GetStartingLocation().Description + "\n");
            String DetectiveName = gameClient.GetReply("Detective at keyboard, please identify yourself: ");

            detective = new Detective(DetectiveName);
            gameClient.ConsoleMessage("You have been identified, " + DetectiveName + "\n\n");
            gameClient.ConsoleMessage("Your current rank is: " + detective.GetRank() + "\n");

            gameClient.GetReply("<< Press Enter to continue >>");
        }