IUnityAnalytics.cs
422 Bytes
using System.Collections.Generic;
namespace UnityEngine.Purchasing
{
/// <summary>
/// Extracted from Unity Analytics for testability.
/// </summary>
internal interface IUnityAnalytics
{
void Transaction(string productId, decimal price,
string currency, string receipt,
string signature);
void CustomEvent(string name, Dictionary<string, object> data);
}
}