mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-24 05:31:51 +01:00
Name the tuple in BaseAddressResolver
This commit is contained in:
parent
3c5f6271ce
commit
67624e14ae
2 changed files with 5 additions and 5 deletions
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Linq;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Dalamud.Game.Internal
|
||||
namespace Dalamud.Game
|
||||
{
|
||||
/// <summary>
|
||||
/// Base memory address resolver.
|
||||
|
|
@ -11,9 +11,9 @@ namespace Dalamud.Game.Internal
|
|||
public abstract class BaseAddressResolver
|
||||
{
|
||||
/// <summary>
|
||||
/// A list of memory addresses that were found, to list in /xldata.
|
||||
/// Gets a list of memory addresses that were found, to list in /xldata.
|
||||
/// </summary>
|
||||
public static Dictionary<string, List<(string, IntPtr)>> DebugScannedValues = new();
|
||||
public static Dictionary<string, List<(string ClassName, IntPtr Address)>> DebugScannedValues { get; } = new();
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the resolver has successfully run <see cref="Setup32Bit(SigScanner)"/> or <see cref="Setup64Bit(SigScanner)"/>.
|
||||
Loading…
Add table
Add a link
Reference in a new issue