Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ICatalogProvider.cs 580B

123456789101112131415161718
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. namespace UnityEngine.Purchasing.Extension
  5. {
  6. /// <summary>
  7. /// Abstract Catalog Provider, facilitating the retrieval of a catalog's products.
  8. /// </summary>
  9. public interface ICatalogProvider
  10. {
  11. /// <summary>
  12. /// Fetch all the products in the catalog, asynchronously.
  13. /// </summary>
  14. /// <param name="callback"> Event containing the set of products upon completion. </param>
  15. void FetchProducts(Action<HashSet<ProductDefinition>> callback);
  16. }
  17. }