com.alicizax.unity.entry/Runtime/GameApp.cs
2025-04-02 19:28:28 +08:00

23 lines
381 B
C#

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;
}