17 lines
399 B
C#
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; }
|
||
|
}
|
||
|
}
|