com.alicizax.unity.entry/Runtime/GameApp.cs
2025-03-24 13:17:07 +08:00

23 lines
380 B
C#

using AlicizaX;
public static partial class GameApp
{
/// <summary>
/// 获取游戏基础组件。
/// </summary>
public static RootModule Base
{
get
{
if (_base == null)
{
_base = RootModule.Instance;
}
return _base;
}
}
private static RootModule _base;
}