fix: nin gauge missing kazematoi (#1904)

Added Kazematoi to nin gauge from structs

Co-authored-by: KazWolfe <KazWolfe@users.noreply.github.com>
This commit is contained in:
Tykku 2024-07-21 19:00:48 -04:00 committed by GitHub
parent d44baa1f49
commit 2335c498c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,4 +18,9 @@ public unsafe class NINGauge : JobGaugeBase<FFXIVClientStructs.FFXIV.Client.Game
/// Gets the amount of Ninki available.
/// </summary>
public byte Ninki => this.Struct->Ninki;
/// <summary>
/// Gets the current charges for Kazematoi
/// </summary>
public byte Kazematoi => this.Struct->Kazematoi;
}