mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
14 lines
311 B
C#
14 lines
311 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Core.Abstractions.Systems;
|
|
|
|
namespace GFramework.Core.Tests.Architectures;
|
|
|
|
/// <summary>
|
|
/// 定义用于混合优先级排序测试的系统契约。
|
|
/// </summary>
|
|
public interface IMixedTestSystem : ISystem
|
|
{
|
|
}
|