minesweeper_game/Library/PackageCache/com.unity.purchasing@649c6c7b3b1b/Editor/ServiceProjectSettings/PurchasingServiceIdentifier.cs
2025-03-15 14:30:26 -04:00

17 lines
313 B
C#

#if SERVICES_SDK_CORE_ENABLED
using Unity.Services.Core.Editor;
namespace UnityEditor.Purchasing
{
internal struct PurchasingServiceIdentifier : IEditorGameServiceIdentifier
{
public string GetKey()
{
return PurchasingIdentifierKey.k_PurchasingKey;
}
}
}
#endif