2025-10-14 12:39:53 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Core
|
|
|
|
{
|
|
|
|
/// <summary>
|
2025-10-17 15:10:19 +08:00
|
|
|
/// 专用于注册控制器的服务定位器
|
2025-10-14 12:39:53 +08:00
|
|
|
/// </summary>
|
2025-10-17 15:10:19 +08:00
|
|
|
public class ControllerLocator : ServiceLocator<ControllerLocator>
|
2025-10-14 12:39:53 +08:00
|
|
|
{
|
|
|
|
// 这里可以按需添加额外的特化功能。
|
|
|
|
// 当前已经完整继承 Register、Resolve、TryGetWait 等功能。
|
|
|
|
}
|
|
|
|
}
|