using System; using UnityEngine; namespace Unity.Services.Authentication { /// /// The entry class to the Authentication Service. /// public static class AuthenticationService { /// /// The default singleton instance to access authentication service. /// public static IAuthenticationService Instance { get; internal set; } } }