mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
9 lines
356 B
C#
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; }
|
|
}
|