Ingen beskrivning
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.

EmptyUnityAnalyticsAdapter.cs 308B

1234567891011
  1. using UnityEngine.Purchasing.Extension;
  2. namespace UnityEngine.Purchasing
  3. {
  4. class EmptyAnalyticsAdapter : IAnalyticsAdapter
  5. {
  6. public void SendTransactionEvent(Product product) { }
  7. public void SendTransactionFailedEvent(Product product, PurchaseFailureDescription reason) { }
  8. }
  9. }