Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

AdsServiceIdentifier.cs 400B

123456789101112131415
  1. #if SERVICES_SDK_CORE_ENABLED
  2. using Unity.Services.Core.Editor;
  3. namespace UnityEngine.Advertisements.Editor
  4. {
  5. /// <summary>
  6. /// Implementation of the <see cref="IEditorGameServiceIdentifier"/> for the Ads service.
  7. /// </summary>
  8. public struct AdsServiceIdentifier : IEditorGameServiceIdentifier
  9. {
  10. /// <inheritdoc/>
  11. public string GetKey() => "Ads";
  12. }
  13. }
  14. #endif