using GFramework.Core.Abstractions.Bases;
namespace GFramework.Core.Tests.Architectures;
///
/// 表示未声明优先级、依赖默认排序值的混合测试系统。
///
public class MixedTestSystemWithoutPriority : AbstractSystem, IMixedTestSystem
{
///
/// 保持空初始化,以便测试仅覆盖优先级排序行为。
///
protected override void OnInit()
{
}
}