Files
iFactory.Cutting.Unity/Assets/Plugins/MonKey Commander/Editor/MonKey/Settings/MonKeySessionStatus.cs
CortexCore fd39099061 init
2024-01-23 02:56:26 +08:00

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