namespace GFramework.Core.architecture;
public class ArchitectureOptionsDelegates
{
///
/// 架构可配置选项委托
///
/// 是否严格验证阶段转换
public delegate bool StrictPhaseValidationDelegate();
///
/// 架构可配置选项委托
///
/// 是否允许在 Ready 阶段后注册系统/模型
public delegate bool AllowLateRegistrationDelegate();
}