mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Merge pull request #704 from daemitus/kaeshi
This commit is contained in:
commit
f1ce9b49b3
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>
|
||||
/// Gets the current amount of Kenki available.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 64848695224c25f5f459c42100a5ab75bf611d3f
|
||||
Subproject commit 6157e56b10511adf633b59cf43178ec3dbb873f7
|
||||
Loading…
Add table
Add a link
Reference in a new issue