From 2fecf0d0556a0f31715aba47c5c7b3ff14b35064 Mon Sep 17 00:00:00 2001 From: Raymond Date: Sat, 4 Dec 2021 22:11:42 -0500 Subject: [PATCH] RPRGauge: add Soul --- .../ClientState/JobGauge/Types/RPRGauge.cs | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Dalamud/Game/ClientState/JobGauge/Types/RPRGauge.cs diff --git a/Dalamud/Game/ClientState/JobGauge/Types/RPRGauge.cs b/Dalamud/Game/ClientState/JobGauge/Types/RPRGauge.cs new file mode 100644 index 000000000..b423691c8 --- /dev/null +++ b/Dalamud/Game/ClientState/JobGauge/Types/RPRGauge.cs @@ -0,0 +1,24 @@ +using System; + +namespace Dalamud.Game.ClientState.JobGauge.Types +{ + /// + /// In-memory RPR job gauge. + /// + public unsafe class RPRGauge : JobGaugeBase + { + /// + /// Initializes a new instance of the class. + /// + /// Address of the job gauge. + internal RPRGauge(IntPtr address) + : base(address) + { + } + + /// + /// Gets the amount of Soul available. + /// + public byte Soul => this.Struct->Soul; + } +}