예제 #1
0
        void SetGameIds(RequestGameIds.Response gameIds)
        {
            AdvertisementSettings.SetGameId(RuntimePlatform.IPhonePlayer, gameIds.iOSGameKey);
            AdvertisementSettings.SetGameId(RuntimePlatform.Android, gameIds.androidGameKey);

            GameIdsUpdated?.Invoke();
        }
예제 #2
0
 void OnRequestGameIdsCompletedSuccess(RequestGameIds.Response response)
 {
     SetGameIds(response);
 }