mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 03:04:29 +08:00
- 在架构初始化完成后发送 ArchitectureInitializedEvent 事件 - 新增 ArchitectureEvents 类用于定义架构相关事件 - 修改 AbstractResourceFactorySystem 在架构初始化完成后执行资源预加载 - 移除 AbstractArchitecture 中的多余空行
11 lines
274 B
C#
11 lines
274 B
C#
|
|
namespace GFramework.Core.events;
|
|
|
|
public static class ArchitectureEvents
|
|
{
|
|
/// <summary>
|
|
/// 架构初始化完成事件
|
|
/// 在所有 Model / System Init 执行完毕后派发
|
|
/// </summary>
|
|
public readonly struct ArchitectureInitializedEvent { }
|
|
} |