コード例 #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
        }
コード例 #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
        }
コード例 #3
0
ファイル: DummyProvider.cs プロジェクト: ivcoder/Trollpants
        /// <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
        }
コード例 #4
0
ファイル: TestProvider.cs プロジェクト: Valder1989/CloudOnce
        /// <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
        }
コード例 #5
0
 public TestProviderStorageWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
 }
コード例 #6
0
 public iOSCloudSaveWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
     iCloudBridge.OnExternalChange += OnExternalCloudDataChanges;
 }
コード例 #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);
 }
コード例 #8
0
ファイル: TestProvider.cs プロジェクト: ricky395/Alieniced
 /// <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);
 }
コード例 #9
0
 public AmazonWhisperSyncWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
 }
コード例 #10
0
ファイル: Cloud.cs プロジェクト: blueinferno5901/GetAGrip
 static Cloud()
 {
     s_cloudOnceEvents = new CloudOnceEvents();
     Achievements      = new GenericAchievementsWrapper();
     Leaderboards      = new GenericLeaderboardsWrapper();
 }
コード例 #11
0
 public GooglePlayGamesCloudSaveWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
 }
コード例 #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);
 }
コード例 #13
0
 public DummyStorageWrapper(CloudOnceEvents events)
 {
     cloudOnceEvents = events;
 }
コード例 #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);
 }
コード例 #15
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);
 }