lib_unity_purchase/Runtime/Stores/AppleAppStore/AppleAppStore.cs

14 lines
346 B
C#
Raw Normal View History

2024-01-29 18:49:33 +08:00
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";
}
}