using System; namespace UnityEngine.Purchasing { /// /// Interface providing access to various store extensions. /// public interface IExtensionProvider { /// /// Get an implementation of a store extension specified by the template parameter. /// /// Implementation of IStoreExtension /// The store extension requested. T GetExtension() where T : IStoreExtension; } }