public static string GetPrompt(this SteamControllerJoystick axis, ISteamController controller)
        {
            var path = axis.GetPromptPath(controller);

            if (path != null)
            {
                return('[' + path + ']');
            }
            else
            {
                return("?");
            }
        }