설명 없음
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.

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