暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IAnalyticsClient.cs 284B

12345678910
  1. using UnityEngine.Purchasing.Extension;
  2. namespace UnityEngine.Purchasing
  3. {
  4. internal interface IAnalyticsClient
  5. {
  6. void OnPurchaseSucceeded(Product product);
  7. void OnPurchaseFailed(Product product, PurchaseFailureDescription purchaseFailureDescription);
  8. }
  9. }