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

19 lines
432 B
C#

#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