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.

IMicrosoftConfiguration.cs 614B

1234567891011121314151617
  1. using UnityEngine.Purchasing.Extension;
  2. namespace UnityEngine.Purchasing
  3. {
  4. /// <summary>
  5. /// Common interface for Universal Windows Platform configuration.
  6. /// </summary>
  7. public interface IMicrosoftConfiguration : IStoreConfiguration
  8. {
  9. /// <summary>
  10. /// Whether or not to use the Mock Billing system in UWP builds.
  11. /// If mock billing is used, the app can be tested before registering the app on the Windows Store.
  12. /// App releases should not be shipped with this flag set to true.
  13. /// </summary>
  14. bool useMockBillingSystem { get; set; }
  15. }
  16. }