mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-28 19:39:19 +01:00
18 lines
525 B
C#
18 lines
525 B
C#
namespace Dalamud.Game.Gui;
|
|
|
|
/// <summary>
|
|
/// The address resolver for the <see cref="GameGui"/> class.
|
|
/// </summary>
|
|
internal sealed class GameGuiAddressResolver : BaseAddressResolver
|
|
{
|
|
/// <summary>
|
|
/// Gets the address of the native HandleImm method.
|
|
/// </summary>
|
|
public IntPtr HandleImm { get; private set; }
|
|
|
|
/// <inheritdoc/>
|
|
protected override void Setup64Bit(ISigScanner sig)
|
|
{
|
|
this.HandleImm = sig.ScanText("E8 ?? ?? ?? ?? 84 C0 75 10 48 83 FF 09"); // unnamed in CS
|
|
}
|
|
}
|