Job Gauge update

This commit is contained in:
Raymond 2021-08-10 17:32:03 -04:00
parent 409ce984da
commit a5cccf8a76
53 changed files with 1216 additions and 1006 deletions

View file

@ -0,0 +1,23 @@
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,
}
}