暫無描述
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.

IExtensionProvider.cs 548B

1234567891011121314151617
  1. using System;
  2. namespace UnityEngine.Purchasing
  3. {
  4. /// <summary>
  5. /// Interface providing access to various store extensions.
  6. /// </summary>
  7. public interface IExtensionProvider
  8. {
  9. /// <summary>
  10. /// Get an implementation of a store extension specified by the template parameter.
  11. /// </summary>
  12. /// <typeparam name="T"> Implementation of <c>IStoreExtension</c> </typeparam>
  13. /// <returns> The store extension requested. </returns>
  14. T GetExtension<T>() where T : IStoreExtension;
  15. }
  16. }