public void ShowNotification(string entry, bool blinking = false, params string[] values) { Notification.Show(string.Format(GetLocalizedText(entry), values), blinking); }
/// <summary> /// Creates a localized <see cref="Notification"/> above the minimap with the given message. /// </summary> /// <param name="entry">Name of the entry.</param> /// <param name="blinking">if set to <see langword="true" /> the notification will blink.</param> /// <returns>The handle of the <see cref="Notification"/> which can be used to hide it using <see cref="Notification.Hide(int)"/>.</returns> public void ShowNotification(string entry, bool blinking = false) { Notification.Show(GetLocalizedText(entry), blinking); }