public static GMModule Instance() { if (instance == null) { instance = SingletonProperty <GMModule> .Instance(); instance.Init(); } return(instance); }
public static JSonIO Instance(JSonUtilType jSonUtilType = JSonUtilType.JsonUtility) { if (instance == null) { instance = SingletonProperty <JSonIO> .Instance(); instance.jSonUtilType = jSonUtilType; } return(instance); }
public static T Instance() { return(SingletonProperty <T> .Instance()); }