com.alicizax.unity.framework/Runtime/GameApp/GameApp.cs

23 lines
381 B
C#
Raw Normal View History

2026-03-18 15:39:23 +08:00
using AlicizaX;
public static partial class GameApp
{
/// <summary>
/// 获取游戏基础组件。
/// </summary>
public static RootModule Base
{
get
{
if (_base == null)
{
_base = RootModule.Instance;
}
return _base;
}
}
internal static RootModule _base;
}