mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
12 lines
436 B
C#
12 lines
436 B
C#
using Dalamud.Interface.ImGuiNotification;
|
|
|
|
namespace Dalamud.Plugin.Services;
|
|
|
|
/// <summary>Manager for notifications provided by Dalamud using ImGui.</summary>
|
|
public interface INotificationManager
|
|
{
|
|
/// <summary>Adds a notification.</summary>
|
|
/// <param name="notification">The new notification.</param>
|
|
/// <returns>The added notification.</returns>
|
|
IActiveNotification AddNotification(Notification notification);
|
|
}
|