Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }