11 lines
272 B
C#
11 lines
272 B
C#
using UnityEngine.Purchasing.Extension;
|
|
|
|
namespace UnityEngine.Purchasing
|
|
{
|
|
interface IAnalyticsAdapter
|
|
{
|
|
void SendTransactionEvent(Product product);
|
|
void SendTransactionFailedEvent(Product product, PurchaseFailureDescription description);
|
|
}
|
|
}
|