Dalamud/Dalamud/Game/Internal/Gui/PartyFinderAddressResolver.cs
Anna Clemens 186b8ed62c
feat: add Party Finder listing event
The event is read-only except for the ability to hide listings.
2021-02-27 14:23:52 -05:00

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");
}
}
}