mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 00:07:49 +01:00
Merge remote-tracking branch 'origin/master' into net8-rollup
This commit is contained in:
commit
4abb3535fa
98 changed files with 3002 additions and 778 deletions
12
Dalamud/Plugin/Services/INotificationManager.cs
Normal file
12
Dalamud/Plugin/Services/INotificationManager.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue