Net.Like.Xue.Tokyo/Assets/Plugins/MonKey Commander/Editor/MonKey/Settings/MonKeySessionStatus.cs

19 lines
432 B
C#
Raw Normal View History

2024-11-03 16:42:23 +08:00
#if UNITY_EDITOR
using MonKey.Editor.Internal;
using MonKey.Internal;
namespace MonKey.Settings.Internal
{
internal static class MonKeySessionStatus
{
public static bool IsMonKeyReady()
{
return CommandManager.Instance
&& MonkeyStyle.Instance
&& MonKeyInternalSettings.Instance
&& MonKeyLocManager.CurrentLoc;
}
}
}
#endif