暂无描述
您最多选择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. }