IL2CPP: Make various initialization pointers available in properties

This commit is contained in:
Katy Coe
2020-02-05 06:12:53 +01:00
parent b8abfee54f
commit a3ff845727
2 changed files with 15 additions and 5 deletions

View File

@@ -16,8 +16,8 @@ namespace Il2CppInspector
// Il2CppInspector ties together the binary and metadata files into a congruent API surface
public class Il2CppInspector
{
private Il2CppBinary Binary { get; }
private Metadata Metadata { get; }
public Il2CppBinary Binary { get; }
public Metadata Metadata { get; }
// All function pointers including attribute initialization functions etc. (start => end)
public Dictionary<ulong, ulong> FunctionAddresses { get; }