Files
2025TapTapGameJam/Assets/Script/Core/UIViewerControllerLocator.cs

15 lines
488 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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