RPRGauge: add Soul

This commit is contained in:
Raymond 2021-12-04 22:11:42 -05:00
parent 858bc40907
commit 2fecf0d055

View file

@ -0,0 +1,24 @@
using System;
namespace Dalamud.Game.ClientState.JobGauge.Types
{
/// <summary>
/// In-memory RPR job gauge.
/// </summary>
public unsafe class RPRGauge : JobGaugeBase<FFXIVClientStructs.FFXIV.Client.Game.Gauge.ReaperGauge>
{
/// <summary>
/// Initializes a new instance of the <see cref="RPRGauge"/> class.
/// </summary>
/// <param name="address">Address of the job gauge.</param>
internal RPRGauge(IntPtr address)
: base(address)
{
}
/// <summary>
/// Gets the amount of Soul available.
/// </summary>
public byte Soul => this.Struct->Soul;
}
}