lib_unity_purchase/Runtime/Stores/AppleAppStore/MacAppStore.cs

14 lines
328 B
C#

namespace UnityEngine.Purchasing
{
/// <summary>
/// Class containing store information for MacOS builds.
/// </summary>
public class MacAppStore
{
/// <summary>
/// The name of the store used for MacOS builds.
/// </summary>
public const string Name = "MacAppStore";
}
}