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.

ILegacyUnityAnalytics.cs 355B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace UnityEngine.Purchasing
  4. {
  5. interface ILegacyUnityAnalytics
  6. {
  7. void SendTransactionEvent(string productId, Decimal amount, string currency, string receiptPurchaseData,
  8. string signature);
  9. void SendCustomEvent(string name, Dictionary<string, object> data);
  10. }
  11. }