using System; using System.Collections.Generic; namespace Core { /// /// 专用于视图控制器层的 Locator。 /// 支持层级父Locator查找(例如:UI模块Locator → 游戏全局Locator)。 /// public class UIViewerControllerLocator : ServiceLocator { // 这里可以按需添加额外的特化功能。 // 当前已经完整继承 Register、Resolve、TryGetWait 等功能。 } }