mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
23 lines
484 B
C#
23 lines
484 B
C#
namespace Dalamud.Game.ClientState.JobGauge.Enums
|
|
{
|
|
/// <summary>
|
|
/// DRG Blood of the Dragon state types.
|
|
/// </summary>
|
|
public enum BOTDState : byte
|
|
{
|
|
/// <summary>
|
|
/// Inactive type.
|
|
/// </summary>
|
|
NONE = 0,
|
|
|
|
/// <summary>
|
|
/// Blood of the Dragon is active.
|
|
/// </summary>
|
|
BOTD = 1,
|
|
|
|
/// <summary>
|
|
/// Life of the Dragon is active.
|
|
/// </summary>
|
|
LOTD = 2,
|
|
}
|
|
}
|