Dalamud/Dalamud/Interface/ImGuiNotification/EventArgs/INotificationClickArgs.cs
2024-02-28 17:11:30 +09:00

9 lines
356 B
C#

namespace Dalamud.Interface.ImGuiNotification.EventArgs;
/// <summary>Arguments for use with <see cref="IActiveNotification.Click"/>.</summary>
/// <remarks>Not to be implemented by plugins.</remarks>
public interface INotificationClickArgs
{
/// <summary>Gets the notification being clicked.</summary>
IActiveNotification Notification { get; }
}