feat(init): 搭建初始的项目框架

This commit is contained in:
2025-10-14 12:39:53 +08:00
parent 3cf503bfa6
commit eba8d5792d
89 changed files with 2782 additions and 100 deletions

View File

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