GFramework/GFramework.Core/events/ArchitectureEvents.cs
GwWuYou 8df2b071cf feat(core): 重构架构初始化事件为生命周期就绪事件
将 `ArchitectureInitializedEvent` 重命名为 `ArchitectureLifecycleReadyEvent`,
并在 `AbstractResourceFactorySystem` 中实现 `IArchitectureLifecycle` 接口,
使其在架构进入就绪阶段时注册并预加载资源。
2025-12-21 11:54:27 +08:00

11 lines
274 B
C#

namespace GFramework.Core.events;
public static class ArchitectureEvents
{
/// <summary>
/// 架构初始化完成事件
/// 在所有 Model / System Init 执行完毕后派发
/// </summary>
public readonly struct ArchitectureLifecycleReadyEvent;
}