mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-15 12:27:43 +01:00
19 lines
456 B
C#
19 lines
456 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Dalamud.Game.ClientState.Structs.JobGauge
|
|
{
|
|
/// <summary>
|
|
/// In-memory PLD job gauge.
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Explicit)]
|
|
public struct PLDGauge
|
|
{
|
|
[FieldOffset(0)]
|
|
private byte gaugeAmount;
|
|
|
|
/// <summary>
|
|
/// Gets the current level of the Oath gauge.
|
|
/// </summary>
|
|
public byte GaugeAmount => this.gaugeAmount;
|
|
}
|
|
}
|