lib_unity_purchase/Runtime/Purchasing/Analytics/Interfaces/Legacy/ILegacyUnityAnalytics.cs

14 lines
355 B
C#
Raw Normal View History

2025-01-20 12:55:54 +08:00
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);
}
}