1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| //
| // 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_ILRT : HotFixService
| {
| public override HotfixMode HotfixDebugMode()
| {
| return HotfixMode.ILRT;
| }
| }
| }
|
|