From a2fe29af249850619bc05453fa356d4614d625a7 Mon Sep 17 00:00:00 2001 From: Alex-Rachel <574809918@qq.com> Date: Sun, 16 Mar 2025 23:47:28 +0800 Subject: [PATCH] GameApp #pragma warning disable CS0436 --- UnityProject/Assets/GameScripts/HotFix/GameLogic/GameApp.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UnityProject/Assets/GameScripts/HotFix/GameLogic/GameApp.cs b/UnityProject/Assets/GameScripts/HotFix/GameLogic/GameApp.cs index 5050c0c8..70f2749b 100644 --- a/UnityProject/Assets/GameScripts/HotFix/GameLogic/GameApp.cs +++ b/UnityProject/Assets/GameScripts/HotFix/GameLogic/GameApp.cs @@ -2,7 +2,8 @@ using System.Collections.Generic; using System.Reflection; using GameLogic; using TEngine; -using UnityEngine.Networking; +#pragma warning disable CS0436 + /// /// 游戏App。 @@ -17,7 +18,6 @@ public partial class GameApp /// public static void Entrance(object[] objects) { - #pragma warning disable CS0436 GameEventHelper.Init(); _hotfixAssembly = (List)objects[0]; Log.Warning("======= 看到此条日志代表你成功运行了热更新代码 =======");