mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
Add an ULD display to data window (#1938)
* prelim uld data display * change uld list to a string array * fix some uld parts not having their texture id set. * update uld browser to use themes and get locations from sig scanning * undo ClientStructs change during rebase * fix capitalization during rebase
This commit is contained in:
parent
bba3298538
commit
ae4c561e09
4 changed files with 406 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
using System.Diagnostics;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace Dalamud.Game;
|
||||
|
||||
|
|
@ -146,4 +146,11 @@ public interface ISigScanner
|
|||
/// <param name="result">The real offset of the signature, if found.</param>
|
||||
/// <returns>true if the signature was found.</returns>
|
||||
public bool TryScanText(string signature, out nint result);
|
||||
|
||||
/// <summary>
|
||||
/// Scan for all matching byte signatures in the .text section.
|
||||
/// </summary>
|
||||
/// <param name="signature">The Signature.</param>
|
||||
/// <returns>The list of real offsets of the found elements based on signature.</returns>
|
||||
public nint[] ScanAllText(string signature);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue