1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| //
| // GameApp.cs
| // Create:
| // 2019-10-29
| // Description:
| // 热更新对象 接口
| // Author:
| // 薛林强 <545626463@qq.com>
| //
| // Copyright (c) 2026 虚幻骑士科技
|
| namespace Skyunion
| {
| public interface IHotfixObject
| {
| string TypeName();
| object Object();
| object Invoke(string rMethodName, params object[] rArgs);
| object InvokeParent(string rParentType, string rMethodName, params object[] rArgs);
| object InvokeStatic(string rMethodName, params object[] rArgs);
| }
| }
|
|