lib_unity_purchase/Runtime/Stores/Android/IAndroidStoreSelection.cs

17 lines
399 B
C#
Raw Permalink Normal View History

2024-01-29 18:49:33 +08:00
using System;
using UnityEngine.Purchasing.Extension;
namespace UnityEngine.Purchasing
{
/// <summary>
/// Store configuration for Android stores.
/// </summary>
public interface IAndroidStoreSelection : IStoreConfiguration
{
/// <summary>
/// A property that retrieves the <c>AppStore</c> type.
/// </summary>
AppStore appStore { get; }
}
}