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
30
31
32
33
34
35
36
37
38
| //
| // GameApp.cs
| // Create:
| // 2019-10-29
| // Description:
| // ģ��ӿ�
| // Author:
| // �⽭�� <421465201@qq.com>
| //
| // Copyright (c) 2026 虚幻骑士科技
|
| using System;
|
| namespace Skyunion
| {
| public interface IModule
| {
| //------------- �ӿ� -------------------//
| // ����Ƿ��ʼ�����
| bool Initialized();
| // ��ʼ��ǰ ��һЩ������ʼ��
| void BeforeInit();
| // ����ģ��ij�ʼ������֮���
| void Init();
| // �ȴ���ʼ�����
| void WaitInitAsync(Action complete);
| // ȫ����ʼ������в���
| void AfterInit();
| // ÿ֡����
| void Update();
| // ÿ֡�ͺ����
| void LateUpdate();
| // �ر�ǰ
| void BeforeShut();
| // �رպ�
| void Shut();
| };
| }
|
|