11 lines
284 B
C#
11 lines
284 B
C#
|
using UnityEngine.Purchasing.Extension;
|
||
|
|
||
|
namespace UnityEngine.Purchasing
|
||
|
{
|
||
|
internal interface IAnalyticsClient
|
||
|
{
|
||
|
void OnPurchaseSucceeded(Product product);
|
||
|
void OnPurchaseFailed(Product product, PurchaseFailureDescription purchaseFailureDescription);
|
||
|
}
|
||
|
}
|