14 lines
379 B
C#
14 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Core
|
|
{
|
|
/// <summary>
|
|
/// 专用于注册控制器的服务定位器
|
|
/// </summary>
|
|
public class ControllerLocator : ServiceLocator<ControllerLocator>
|
|
{
|
|
// 这里可以按需添加额外的特化功能。
|
|
// 当前已经完整继承 Register、Resolve、TryGetWait 等功能。
|
|
}
|
|
} |