mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
16 lines
379 B
C#
16 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Dalamud.Game.ClientState.Structs.JobGauge {
|
|
|
|
[StructLayout(LayoutKind.Explicit)]
|
|
public struct SAMGauge {
|
|
|
|
[FieldOffset(0xf)] public byte Kenki;
|
|
[FieldOffset(0x10)] public byte Sen;
|
|
}
|
|
}
|