123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
-
- namespace UnityEngine.Purchasing.Extension
- {
- /// <summary>
- /// Configures Unity Purchasing with one or more
- /// store implementations.
- /// </summary>
- public interface IPurchasingBinder
- {
- /// <summary>
- /// Informs Unity Purchasing that a store implementation exists,
- /// specifying its name.
- ///
- /// Modules can pass null IStore instances when running on platforms
- /// they do not support.
- /// </summary>
- /// <param name="name"> The name of the store </param>
- /// <param name="store"> The instance of the store </param>
- void RegisterStore(string name, IStore store);
-
- /// <summary>
- /// Informs Unity Purchasing that a store extension is available.
- /// </summary>
- /// <typeparam name="T"> Implementation of <c>IStoreExtension</c>. </typeparam>
- /// <param name="instance"> The instance of the store extension. </param>
- void RegisterExtension<T>(T instance) where T : IStoreExtension;
-
- /// <summary>
- /// Informs Unity Purchasing that extended Configuration is available.
- /// </summary>
- /// <typeparam name="T"> Implementation of <c>IStoreConfiguration</c>. </typeparam>
- /// <param name="instance"> The instance of the store configuration. </param>
- void RegisterConfiguration<T>(T instance) where T : IStoreConfiguration;
-
- /// <summary>
- /// Informs Unity Purchasing about a catalog provider which might replace or add products at runtime.
- /// </summary>
- /// <param name="provider"> The provider of the catalog containing the products </param>
- void SetCatalogProvider(ICatalogProvider provider);
-
- /// <summary>
- /// Informs Unity Purchasing about a catalog provider function, which might replace or add products at runtime.
- /// This is an alternative to the SetCatalogProvider API for setting a catalog provider that does not implement
- /// the ICatalogProvider interface.
- /// </summary>
- /// <param name="func"> The action that executes the addition of modificiation of products </param>
- void SetCatalogProviderFunction(Action<Action<HashSet<ProductDefinition>>> func);
- }
- }
|