Dalamud/Dalamud/Game/Internal/Gui/HoveredAction.cs
2021-01-29 12:24:43 +10:30

19 lines
540 B
C#

namespace Dalamud.Game.Internal.Gui {
public class HoveredAction {
/// <summary>
/// The base action ID
/// </summary>
public uint BaseActionID { get; set; } = 0;
/// <summary>
/// Action ID accounting for automatic upgrades.
/// </summary>
public uint ActionID { get; set; } = 0;
/// <summary>
/// The type of action
/// </summary>
public HoverActionKind ActionKind { get; set; } = HoverActionKind.None;
}
}