Improve deobfuscation efficiency

This commit is contained in:
Sinai
2021-04-24 04:00:15 +10:00
parent f509a985e7
commit 7ffaf62895
4 changed files with 92 additions and 31 deletions

View File

@ -37,9 +37,11 @@ namespace UnityExplorer.Core.Runtime.Mono
public override bool LoadModule(string module)
=> true;
public override string ProcessTypeNameInString(Type type, string theString, ref string typeName)
public override string ProcessTypeFullNameInString(Type type, string theString, ref string typeName)
=> theString;
public override Type GetDeobfuscatedType(Type type) => type;
// not necessary
public override void BoxStringToType(ref object _string, Type castTo) { }
}