mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
Cleanup
This commit is contained in:
parent
e44180d4a2
commit
a7d5380796
24 changed files with 1056 additions and 1412 deletions
|
|
@ -2,21 +2,11 @@ using Dalamud.Interface.ImGuiNotification;
|
|||
|
||||
namespace Dalamud.Plugin.Services;
|
||||
|
||||
/// <summary>
|
||||
/// Manager for notifications provided by Dalamud using ImGui.
|
||||
/// </summary>
|
||||
/// <summary>Manager for notifications provided by Dalamud using ImGui.</summary>
|
||||
public interface INotificationManager
|
||||
{
|
||||
/// <summary>
|
||||
/// Adds a notification.
|
||||
/// </summary>
|
||||
/// <summary>Adds a notification.</summary>
|
||||
/// <param name="notification">The new notification.</param>
|
||||
/// <param name="disposeNotification">
|
||||
/// Dispose <paramref name="notification"/> when this function returns, even if the function throws an exception.
|
||||
/// Set to <c>false</c> to reuse <paramref name="notification"/> for multiple calls to this function, in which case,
|
||||
/// you should call <see cref="IDisposable.Dispose"/> on the value supplied to <paramref name="notification"/> at a
|
||||
/// later time.
|
||||
/// </param>
|
||||
/// <returns>The added notification.</returns>
|
||||
IActiveNotification AddNotification(Notification notification, bool disposeNotification = true);
|
||||
IActiveNotification AddNotification(Notification notification);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue