暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

FakeAppleConfiguration.cs 577B

12345678910111213141516171819202122
  1. #nullable enable
  2. using System;
  3. using System.Collections.Generic;
  4. namespace UnityEngine.Purchasing
  5. {
  6. class FakeAppleConfiguration : IAppleConfiguration
  7. {
  8. public string appReceipt => "This is a fake receipt. When running on an Apple store, a base64 encoded App Receipt would be returned";
  9. public bool canMakePayments => true;
  10. public void SetApplePromotionalPurchaseInterceptorCallback(Action<Product> callback)
  11. {
  12. }
  13. public void SetEntitlementsRevokedListener(Action<List<Product>> callback)
  14. {
  15. }
  16. }
  17. }