您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
427 B

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