From 1ec6e2f4261571c60f2b7f5aaac1ea686973b84a Mon Sep 17 00:00:00 2001 From: walon Date: Wed, 6 Aug 2025 10:57:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86ObfuscationTypeMapper::RegisterType?= =?UTF-8?q?=E5=87=BD=E6=95=B0=E7=94=B1internal=E6=94=B9=E4=B8=BApublic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/ObfuscationTypeMapper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Runtime/ObfuscationTypeMapper.cs b/Runtime/ObfuscationTypeMapper.cs index a85927c..30a9d15 100644 --- a/Runtime/ObfuscationTypeMapper.cs +++ b/Runtime/ObfuscationTypeMapper.cs @@ -9,12 +9,12 @@ namespace Obfuz private static readonly Dictionary _type2OriginalFullName = new Dictionary(); private static readonly Dictionary> _originalFullName2Types = new Dictionary>(); - internal static void RegisterType(string originalFullName) + public static void RegisterType(string originalFullName) { RegisterType(typeof(T), originalFullName); } - internal static void RegisterType(Type type, string originalFullName) + public static void RegisterType(Type type, string originalFullName) { if (_type2OriginalFullName.ContainsKey(type)) {