public static IBaseDataStorage <UserInfoBean, long> getInstance()
 {
     if (handle == null)
     {
         handle = new UserInfoDSHandle();
     }
     return(handle);
 }
Beispiel #2
0
 public static IBaseDataStorage <PuzzlesCompleteStateBean, long> getInstance()
 {
     if (handle == null)
     {
         handle = new PuzzlesCompleteDSHandle();
     }
     return(handle);
 }
 public static IBaseDataStorage <GameConfigureBean, long> getInstance()
 {
     if (handle == null)
     {
         handle = new GameConfigureDSHandle();
     }
     return(handle);
 }
 public static IBaseDataStorage <PuzzlesInfoBean, long> getInstance()
 {
     if (handle == null)
     {
         handle = new CustomPuzzlesInfoDSHandle();
     }
     return(handle);
 }
Beispiel #5
0
 public static IBaseDataStorage <EquipInfoBean, EquipInfoBean> getInstance()
 {
     if (handle == null)
     {
         handle = new EquipDSHandle();
     }
     return(handle);
 }
 public static IBaseDataStorage <PuzzlesProgressBean, PuzzlesProgressBean> getInstance()
 {
     if (handle == null)
     {
         handle = new PuzzlesProgressDSHandle();
     }
     return(handle);
 }