UnityEngine.Purchasing.GooglePlayStoreExtensionsInternal.SetGooglePlayStoreExtensions C# (CSharp) Method

SetGooglePlayStoreExtensions() public method

public SetGooglePlayStoreExtensions ( UnityEngine.Purchasing.GooglePlayStoreExtensions googlePlayStoreExtensions ) : void
googlePlayStoreExtensions UnityEngine.Purchasing.GooglePlayStoreExtensions
return void
        public void SetGooglePlayStoreExtensions(GooglePlayStoreExtensions googlePlayStoreExtensions)
        {
            m_GooglePlayStoreExtensions = googlePlayStoreExtensions;
        }

Usage Example

Beispiel #1
0
 internal GooglePlayStoreExtensions(IGooglePlayStoreService googlePlayStoreService, IGooglePlayStoreFinishTransactionService googlePlayStoreFinishTransactionService, GooglePlayStoreExtensionsInternal googlePlayStoreExtensionsInternal)
 {
     m_GooglePlayStoreService = googlePlayStoreService;
     m_GooglePlayStoreFinishTransactionService = googlePlayStoreFinishTransactionService;
     m_GooglePlayStoreExtensionsInternal       = googlePlayStoreExtensionsInternal;
     m_GooglePlayStoreExtensionsInternal.SetGooglePlayStoreExtensions(this);
 }