このインターフェースは、ストア特定の拡張機能へのアクセスを可能にします。
特定の拡張インターフェース型は、 IPurchasingModule
の IPurchasingBinder
を通して特定のストアタイプと関連づけられています。
拡張のサンプル
using System; using UnityEngine; using UnityEngine.Purchasing;
// Extends an implementing store. public interface ISampleExtension : IStoreExtension { // Implemented by associated store. void RestoreTransactions(Action<bool> callback); }
GetExtension | 指定した型のストア特定の拡張を取得します。 |