No Description
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.

IAndroidStoreSelection.cs 399B

12345678910111213141516
  1. using System;
  2. using UnityEngine.Purchasing.Extension;
  3. namespace UnityEngine.Purchasing
  4. {
  5. /// <summary>
  6. /// Store configuration for Android stores.
  7. /// </summary>
  8. public interface IAndroidStoreSelection : IStoreConfiguration
  9. {
  10. /// <summary>
  11. /// A property that retrieves the <c>AppStore</c> type.
  12. /// </summary>
  13. AppStore appStore { get; }
  14. }
  15. }