mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
28 lines
553 B
C#
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,
|
|
}
|
|
}
|