SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Runtime/Stores/AppleAppStore/FakeAppleConfiguration.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

23 lines
577 B
C#

#nullable enable
using System;
using System.Collections.Generic;
namespace UnityEngine.Purchasing
{
class FakeAppleConfiguration : IAppleConfiguration
{
public string appReceipt => "This is a fake receipt. When running on an Apple store, a base64 encoded App Receipt would be returned";
public bool canMakePayments => true;
public void SetApplePromotionalPurchaseInterceptorCallback(Action<Product> callback)
{
}
public void SetEntitlementsRevokedListener(Action<List<Product>> callback)
{
}
}
}