mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-20 14:57:45 +01:00
19 lines
540 B
C#
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;
|
|
}
|
|
}
|