Localize sample UI and document release conventions

This commit is contained in:
2026-04-10 22:38:28 +08:00
parent 48eeb79d7d
commit ea5b96507d
37 changed files with 1012 additions and 304 deletions

View File

@@ -1,6 +1,18 @@
/// <summary>
/// 登录时可选上传的玩家资料。
/// </summary>
public sealed class BriskProfile
{
/// <summary>
/// 玩家昵称。
/// </summary>
public string Nickname;
/// <summary>
/// 玩家头像地址。
/// </summary>
public string AvatarUrl;
/// <summary>
/// 额外扩展资料。
/// </summary>
public object ProfileJson;
}