mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-28 03:19:21 +01:00
25 lines
655 B
C#
25 lines
655 B
C#
using OtterGui.Classes;
|
|
using Penumbra.Api.Api;
|
|
|
|
namespace Penumbra.Communication;
|
|
|
|
/// <summary>
|
|
/// Triggered when a Changed Item in Penumbra is hovered.
|
|
/// <list type="number">
|
|
/// <item>Parameter is the hovered object data if any. </item>
|
|
/// </list>
|
|
/// </summary>
|
|
public sealed class ChangedItemHover() : EventWrapper<object?, ChangedItemHover.Priority>(nameof(ChangedItemHover))
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="UiApi.OnChangedItemHover"/>
|
|
Default = 0,
|
|
|
|
/// <seealso cref="Penumbra.SetupApi"/>
|
|
Link = 1,
|
|
}
|
|
|
|
public bool HasTooltip
|
|
=> HasSubscribers;
|
|
}
|