Exemplo n.º 1
0
        /// <summary>
        /// Method used by <see cref="Cloud"/> to initialize the Cloud provider.
        /// </summary>
        public void InternalInit(CloudOnceEvents events)
        {
            cloudOnceEvents = events;
            Storage         = new iOSCloudSaveWrapper(events);
            ServiceName     = "Apple Game Center";
#if CLOUDONCE_DEBUG
            Debug.Log("Using " + ServiceName);
#endif
        }
Exemplo n.º 2
0
        /// <summary>
        /// Method used by <see cref="Cloud"/> to initialize the Cloud provider.
        /// </summary>
        public void InternalInit(CloudOnceEvents events)
        {
            cloudOnceEvents = events;
            Storage         = new GooglePlayGamesCloudSaveWrapper(events);
            ServiceName     = "Google Play Game Services";
#if CLOUDONCE_DEBUG
            Debug.Log("Using " + ServiceName);
#endif
        }
Exemplo n.º 3
0
        /// <summary>
        /// Method used by <see cref="Cloud"/> to initialize the Cloud provider.
        /// </summary>
        public void InternalInit(CloudOnceEvents events)
        {
            cloudOnceEvents = events;
            Storage         = new DummyStorageWrapper(events);
            ServiceName     = "Dummy Provider";
#if CLOUDONCE_DEBUG
            Debug.Log("Using " + ServiceName);
#endif
        }
Exemplo n.º 4
0
        /// <summary>
        /// Method used by <see cref="Cloud"/> to initialize the Cloud provider.
        /// </summary>
        public void InternalInit(CloudOnceEvents events)
        {
            cloudOnceEvents = events;
            DataManager.InitDataManager();
            Storage     = new TestProviderStorageWrapper(events);
            ServiceName = "Test Cloud Provider";
#if CLOUDONCE_DEBUG
            Debug.Log("Using " + ServiceName);
#endif
        }
Exemplo n.º 5
0
 public TestProviderStorageWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
 }
Exemplo n.º 6
0
 public iOSCloudSaveWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
     iCloudBridge.OnExternalChange += OnExternalCloudDataChanges;
 }
Exemplo n.º 7
0
 /// <summary>
 /// Method used by <see cref="Cloud"/> to initialize the Cloud provider.
 /// </summary>
 public void InternalInit(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
     Storage         = new AmazonWhisperSyncWrapper(events);
 }
Exemplo n.º 8
0
 /// <summary>
 /// Method used by <see cref="Cloud"/> to initialize the Cloud provider.
 /// </summary>
 public void InternalInit(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
     DataManager.InitDataManager();
     Storage = new TestProviderStorageWrapper(events);
 }
 public AmazonWhisperSyncWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
 }
Exemplo n.º 10
0
 static Cloud()
 {
     s_cloudOnceEvents = new CloudOnceEvents();
     Achievements      = new GenericAchievementsWrapper();
     Leaderboards      = new GenericLeaderboardsWrapper();
 }
 public GooglePlayGamesCloudSaveWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
 }
Exemplo n.º 12
0
 /// <summary>
 /// Method used by <see cref="Cloud"/> to initialize the Cloud provider.
 /// </summary>
 public void InternalInit(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
     Storage         = new DummyStorageWrapper(events);
 }
Exemplo n.º 13
0
 public DummyStorageWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
 }
Exemplo n.º 14
0
 /// <summary>
 /// Method used by <see cref="Cloud"/> to initialize the Cloud provider.
 /// </summary>
 public void InternalInit(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
     Storage         = new iOSCloudSaveWrapper(events);
 }
 /// <summary>
 /// Method used by <see cref="Cloud"/> to initialize the Cloud provider.
 /// </summary>
 public void InternalInit(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
     Storage         = new GooglePlayGamesCloudSaveWrapper(events);
 }