您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
15 行
436 B
15 行
436 B
using Unity.Services.Lobbies.Apis.Lobby;
|
|
|
|
|
|
namespace Unity.Services.Lobbies
|
|
{
|
|
public static class LobbyService
|
|
{
|
|
/// <summary>
|
|
/// Static accessor for LobbyApi methods.
|
|
/// </summary>
|
|
public static ILobbyApiClient LobbyApiClient { get; internal set; }
|
|
|
|
public static Configuration Configuration = new Configuration("https://lobby.services.api.unity.com/v1", 10, 4, null);
|
|
}
|
|
}
|