mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 21:33:39 +01:00
22 lines
604 B
C#
22 lines
604 B
C#
namespace Dalamud.Game.Gui;
|
|
|
|
/// <summary>
|
|
/// This class represents the hotbar action currently hovered over by the cursor.
|
|
/// </summary>
|
|
public class HoveredAction
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the base action ID.
|
|
/// </summary>
|
|
public uint BaseActionID { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the action ID accounting for automatic upgrades.
|
|
/// </summary>
|
|
public uint ActionID { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the type of action.
|
|
/// </summary>
|
|
public HoverActionKind ActionKind { get; set; } = HoverActionKind.None;
|
|
}
|