SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Runtime/Stores/Android/IAndroidStoreSelection.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

17 lines
399 B
C#

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; }
}
}