SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Runtime/Purchasing/Analytics/Interfaces/Legacy/ILegacyUnityAnalytics.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

14 lines
355 B
C#

using System;
using System.Collections.Generic;
namespace UnityEngine.Purchasing
{
interface ILegacyUnityAnalytics
{
void SendTransactionEvent(string productId, Decimal amount, string currency, string receiptPurchaseData,
string signature);
void SendCustomEvent(string name, Dictionary<string, object> data);
}
}