您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
17 行
488 B
17 行
488 B
public class ServerListConfig
|
|
{
|
|
// The Url of the serverlist service endpoint
|
|
public string Url { get; set; }
|
|
|
|
// The time in seconds between serverlist GET calls
|
|
public int Period { get; set; }
|
|
|
|
public static ServerListConfig BasicConfig(string projectId)
|
|
{
|
|
return new ServerListConfig()
|
|
{
|
|
Url = string.Format("http://104.154.156.161:8080/api/projects/{0}/servers?multiplay=true", projectId),
|
|
Period = 5
|
|
};
|
|
}
|
|
}
|