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.

ExternalUserId.cs 479B

12345678910111213141516
  1. using System;
  2. using Unity.Services.Core.Configuration.Internal;
  3. namespace Unity.Services.Core.Configuration
  4. {
  5. class ExternalUserId : IExternalUserId
  6. {
  7. public string UserId => UnityServices.ExternalUserIdProperty.UserId;
  8. public event Action<string> UserIdChanged
  9. {
  10. add => UnityServices.ExternalUserIdProperty.UserIdChanged += value;
  11. remove => UnityServices.ExternalUserIdProperty.UserIdChanged -= value;
  12. }
  13. }
  14. }