mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 11:14:30 +08:00
将 `ArchitectureInitializedEvent` 重命名为 `ArchitectureLifecycleReadyEvent`, 并在 `AbstractResourceFactorySystem` 中实现 `IArchitectureLifecycle` 接口, 使其在架构进入就绪阶段时注册并预加载资源。
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 ArchitectureLifecycleReadyEvent;
|
|
} |