mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
21 lines
698 B
C#
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;
|
|
}
|
|
}
|
|
}
|