Dalamud/Dalamud/Game/ClientState/ClientStateAddressResolver.cs
goaaats 5868b4974a
Merge pull request #37 from attickdoor/master
Update job gauge offset for 5.2.
2020-02-22 00:33:06 +09:00

21 lines
698 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Dalamud.Game.Internal;
namespace Dalamud.Game.ClientState
{
public sealed class ClientStateAddressResolver : BaseAddressResolver {
public IntPtr ActorTable { get; private set; }
public IntPtr LocalContentId { get; private set; }
public IntPtr JobGaugeData { get; set; }
protected override void Setup64Bit(SigScanner sig) {
ActorTable = sig.Module.BaseAddress + 0x1C62218;
LocalContentId = sig.Module.BaseAddress + 0x1C2E000;
JobGaugeData = sig.Module.BaseAddress + 0x1C5E4A0;
}
}
}