mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
Merge branch 'master' of https://github.com/goatcorp/Dalamud
This commit is contained in:
commit
ae983c6ebf
3 changed files with 39 additions and 1 deletions
33
Dalamud/Game/ClientState/JobGauge/Enums/Kaeshi.cs
Normal file
33
Dalamud/Game/ClientState/JobGauge/Enums/Kaeshi.cs
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
namespace Dalamud.Game.ClientState.JobGauge.Enums
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// SAM Kaeshi types.
|
||||||
|
/// </summary>
|
||||||
|
public enum Kaeshi : byte
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// No Kaeshi is active.
|
||||||
|
/// </summary>
|
||||||
|
NONE = 0,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Kaeshi: Higanbana type.
|
||||||
|
/// </summary>
|
||||||
|
HIGANBANA = 1,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Kaeshi: Goken type.
|
||||||
|
/// </summary>
|
||||||
|
GOKEN = 2,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Kaeshi: Setsugekka type.
|
||||||
|
/// </summary>
|
||||||
|
SETSUGEKKA = 3,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Kaeshi: Namikiri type.
|
||||||
|
/// </summary>
|
||||||
|
NAMIKIRI = 4,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -18,6 +18,11 @@ namespace Dalamud.Game.ClientState.JobGauge.Types
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the currently active Kaeshi ability.
|
||||||
|
/// </summary>
|
||||||
|
public Kaeshi Kaeshi => (Kaeshi)this.Struct->Kaeshi;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the current amount of Kenki available.
|
/// Gets the current amount of Kenki available.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 64848695224c25f5f459c42100a5ab75bf611d3f
|
Subproject commit 6157e56b10511adf633b59cf43178ec3dbb873f7
|
||||||
Loading…
Add table
Add a link
Reference in a new issue