diff --git a/SingularSDK/Runtime/SingularSDK.cs b/SingularSDK/Runtime/SingularSDK.cs index 19207f7..ca2e8e1 100644 --- a/SingularSDK/Runtime/SingularSDK.cs +++ b/SingularSDK/Runtime/SingularSDK.cs @@ -25,7 +25,7 @@ public class SingularSDK : MonoBehaviour public int logLevel = 3; private static SingularSDK instance = null; - private static bool Initialized = false; + public static bool Initialized { get; private set; } = false; private const string UNITY_WRAPPER_NAME = "Unity"; private const string UNITY_VERSION = "5.2.0"; @@ -1850,4 +1850,4 @@ public SingularGlobalProperty(string key, string value, bool overrideExisting) } } } -} \ No newline at end of file +}