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

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