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