14 lines
346 B
C#
14 lines
346 B
C#
namespace UnityEngine.Purchasing
|
|
{
|
|
/// <summary>
|
|
/// Class containing store information for iOS and tvOS builds.
|
|
/// </summary>
|
|
public class AppleAppStore
|
|
{
|
|
/// <summary>
|
|
/// The name of the store used for iOS and tvOS builds.
|
|
/// </summary>
|
|
public const string Name = "AppleAppStore";
|
|
}
|
|
}
|