No Description
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.

IAnalyticsAdapter.cs 272B

12345678910
  1. using UnityEngine.Purchasing.Extension;
  2. namespace UnityEngine.Purchasing
  3. {
  4. interface IAnalyticsAdapter
  5. {
  6. void SendTransactionEvent(Product product);
  7. void SendTransactionFailedEvent(Product product, PurchaseFailureDescription description);
  8. }
  9. }