lib_unity_purchase/Runtime/Stores/Android/AmazonAppStore/IAmazonConfiguration.cs

19 lines
645 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System.Collections.Generic;
using UnityEngine.Purchasing;
using UnityEngine.Purchasing.Extension;
namespace UnityEngine.Purchasing
{
/// <summary>
/// Access Amazon store specific configurations.
/// </summary>
public interface IAmazonConfiguration : IStoreConfiguration
{
/// <summary>
/// To use for Amazons local Sandbox testing app, generate a JSON description of your product catalog on the devices SD card.
/// </summary>
/// <param name="products">Products to add to the testing app JSON.</param>
void WriteSandboxJSON(HashSet<ProductDefinition> products);
}
}