SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Editor/ServiceProjectSettings/PurchasingServiceIdentifier.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01: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