Simplify string obfuscation processing

This commit is contained in:
Sinai
2021-05-07 01:53:02 +10:00
parent 8534c08f49
commit 56875e0641
3 changed files with 15 additions and 28 deletions

View File

@ -105,10 +105,10 @@ namespace UnityExplorer
=> obj;
// Processing deobfuscated type names in strings
public static string ProcessTypeInString(Type type, string theString, ref string typeName)
=> Instance.Internal_ProcessTypeInString(theString, type, ref typeName);
public static string ProcessTypeInString(Type type, string theString)
=> Instance.Internal_ProcessTypeInString(theString, type);
internal virtual string Internal_ProcessTypeInString(string theString, Type type, ref string typeName)
internal virtual string Internal_ProcessTypeInString(string theString, Type type)
=> theString;
// Force loading modules