示例#1
0
 /// <summary>
 /// Removes a help "chatbubble" type of bubble from the selected part of the Habbo UI.
 /// </summary>
 /// <param name="uiControl">Enum to specify which control in the UI needs to have a help bubble added</param>
 /// <returns></returns>
 public static string RemoveHelpBubble(HabboUIControl uiControl)
 => "helpBubble/remove/" + Enum.GetName(typeof(HabboUIControl), uiControl);
示例#2
0
 /// <summary>
 /// Adds a help "chatbubble" type of bubble to the selected part of the Habbo UI.
 ///<para>NOTE: If more than one bubble is present at once, only the last bubble will be closable. Others will never leave the UI.</para>
 /// </summary>
 /// <param name="uiControl">Enum to specify which control in the UI needs to have a help bubble added</param>
 /// <param name="message">The message that will be displayed on the help bubble</param>
 /// <returns></returns>
 public static string ShowHelpBubble(HabboUIControl uiControl, string message)
 => $"helpBubble/add/{Enum.GetName(typeof(HabboUIControl), uiControl)}/{message}";