Dalamud/Dalamud/Game/ClientState/JobGauge/Enums/Song.cs

28 lines
553 B
C#

namespace Dalamud.Game.ClientState.JobGauge.Enums
{
/// <summary>
/// BRD Song types.
/// </summary>
public enum Song : byte
{
/// <summary>
/// No song is active type.
/// </summary>
NONE = 0,
/// <summary>
/// Mage's Ballad type.
/// </summary>
MAGE = 1,
/// <summary>
/// Army's Paeon type.
/// </summary>
ARMY = 2,
/// <summary>
/// The Wanderer's Minuet type.
/// </summary>
WANDERER = 3,
}
}