No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PurchasingServiceIdentifier.cs 313B

12345678910111213141516
  1. #if SERVICES_SDK_CORE_ENABLED
  2. using Unity.Services.Core.Editor;
  3. namespace UnityEditor.Purchasing
  4. {
  5. internal struct PurchasingServiceIdentifier : IEditorGameServiceIdentifier
  6. {
  7. public string GetKey()
  8. {
  9. return PurchasingIdentifierKey.k_PurchasingKey;
  10. }
  11. }
  12. }
  13. #endif