Improve Debug Tab to contain all game data.

This commit is contained in:
Ottermandias 2023-06-15 15:32:35 +02:00
parent f2f16c664c
commit 7463aafa13
9 changed files with 380 additions and 248 deletions

View file

@ -162,4 +162,7 @@ public unsafe partial struct Actor : IEquatable<Actor>, IDesignable
public static bool operator !=(Actor lhs, Actor rhs)
=> lhs.Pointer != rhs.Pointer;
public string AddressString()
=> $"0x{Address:X}";
}