Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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