// // GameApp.cs // Create: // 2019-10-29 // Description: // 代码热更新服务类 // Author: // 薛林强 <545626463@qq.com> // // Copyright (c) 2026 虚幻骑士科技 using System; using System.Collections; using System.IO; using UnityEngine; using log4net.Util; using System.Collections.Generic; using System.Threading; namespace Skyunion { internal class HotFixService_Reflect : HotFixService { public override HotfixMode HotfixDebugMode() { return HotfixMode.Reflect; } } }