mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
* GameGui uses CS methods now Co-authored-by: Infi <infiziert@protonmail.ch> * Shove even more things over to CS * Clean up NetworkHandlers too * bump cs so things build at least --------- Co-authored-by: Infi <infiziert@protonmail.ch>
18 lines
560 B
C#
18 lines
560 B
C#
namespace Dalamud.Game.Config;
|
|
|
|
/// <summary>
|
|
/// Game config system address resolver.
|
|
/// </summary>
|
|
internal sealed class GameConfigAddressResolver : BaseAddressResolver
|
|
{
|
|
/// <summary>
|
|
/// Gets the address of the method called when any config option is changed.
|
|
/// </summary>
|
|
public nint ConfigChangeAddress { get; private set; }
|
|
|
|
/// <inheritdoc/>
|
|
protected override void Setup64Bit(ISigScanner scanner)
|
|
{
|
|
this.ConfigChangeAddress = scanner.ScanText("E8 ?? ?? ?? ?? 48 8B 3F 49 3B 3E"); // unnamed in CS
|
|
}
|
|
}
|