mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-15 12:27:43 +01:00
11 lines
335 B
C#
Executable file
11 lines
335 B
C#
Executable file
using System;
|
|
|
|
namespace Dalamud.Game.Internal.Gui {
|
|
class PartyFinderAddressResolver : BaseAddressResolver {
|
|
public IntPtr ReceiveListing { get; private set; }
|
|
|
|
protected override void Setup64Bit(SigScanner sig) {
|
|
ReceiveListing = sig.ScanText("40 53 41 57 48 83 EC 28 48 8B D9");
|
|
}
|
|
}
|
|
}
|