Exemplo n.º 1
0
    public static JSonIO Instance(JSonUtilType jSonUtilType = JSonUtilType.JsonUtility)
    {
        if (instance == null)
        {
            instance = SingletonProperty <JSonIO> .Instance();

            instance.jSonUtilType = jSonUtilType;
        }

        return(instance);
    }
Exemplo n.º 2
0
        public static GMModule Instance()
        {
            if (instance == null)
            {
                instance = SingletonProperty <GMModule> .Instance();

                instance.Init();
            }

            return(instance);
        }
Exemplo n.º 3
0
 public virtual void Dispose()
 {
     SingletonProperty <T> .Dispose();
 }
Exemplo n.º 4
0
 public void Dispose()
 {
     SingletonProperty <SafeObjectPool <T> > .Dispose();
 }
Exemplo n.º 5
0
 protected override void OnDispose()
 {
     base.OnDispose();
     SingletonProperty <Singleton> .Dispose();
 }
Exemplo n.º 6
0
 public void Dispose()
 {
     SingletonProperty <ObjManager> .Dispose();
 }
Exemplo n.º 7
0
 public static T Instance()
 {
     return(SingletonProperty <T> .Instance());
 }