mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Rename SMN enums to follow code standards
This commit is contained in:
parent
61a4f3bcef
commit
fc562778da
2 changed files with 13 additions and 7 deletions
|
|
@ -1,19 +1,22 @@
|
||||||
namespace Dalamud.Game.ClientState.JobGauge.Enums;
|
namespace Dalamud.Game.ClientState.JobGauge.Enums;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Enum representing the current step of Delirium.
|
||||||
|
/// </summary>
|
||||||
public enum DeliriumStep
|
public enum DeliriumStep
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Scarlet Delirium can be used.
|
/// Scarlet Delirium can be used.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
SCARLET_DELIRIUM = 0,
|
ScarletDelirium = 0,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Comeuppance can be used.
|
/// Comeuppance can be used.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
COMEUPPANCE = 1,
|
Comeuppance = 1,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Torcleaver can be used.
|
/// Torcleaver can be used.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TORCLEAVER = 2,
|
Torcleaver = 2,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,27 +1,30 @@
|
||||||
namespace Dalamud.Game.ClientState.JobGauge.Enums;
|
namespace Dalamud.Game.ClientState.JobGauge.Enums;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Enum representing the current attunement of a summoner.
|
||||||
|
/// </summary>
|
||||||
public enum SummonAttunement
|
public enum SummonAttunement
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// No attunement.
|
/// No attunement.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
NONE = 0,
|
None = 0,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Attuned to the summon Ifrit.
|
/// Attuned to the summon Ifrit.
|
||||||
/// Same as <see cref="JobGauge.Types.SMNGauge.IsIfritAttuned"/>.
|
/// Same as <see cref="JobGauge.Types.SMNGauge.IsIfritAttuned"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
IFRIT = 1,
|
Ifrit = 1,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Attuned to the summon Titan.
|
/// Attuned to the summon Titan.
|
||||||
/// Same as <see cref="JobGauge.Types.SMNGauge.IsTitanAttuned"/>.
|
/// Same as <see cref="JobGauge.Types.SMNGauge.IsTitanAttuned"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TITAN = 2,
|
Titan = 2,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Attuned to the summon Garuda.
|
/// Attuned to the summon Garuda.
|
||||||
/// Same as <see cref="JobGauge.Types.SMNGauge.IsGarudaAttuned"/>.
|
/// Same as <see cref="JobGauge.Types.SMNGauge.IsGarudaAttuned"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
GARUDA = 3,
|
Garuda = 3,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue