You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
487 B
26 lines
487 B
1 month ago
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Realmlist
|
||
|
{
|
||
|
|
||
|
public class RealmlistServerConfig
|
||
|
{
|
||
|
|
||
|
public string realmListFile;
|
||
|
|
||
|
//校验realmListjson
|
||
|
public bool checkRealmListFile;
|
||
|
|
||
|
public bool enableModifykRealmListOpen;
|
||
|
|
||
|
public string defaultAreaName;
|
||
|
|
||
|
// 每个realm允许进入的最大玩家数量
|
||
|
public int maxPlayerPerRealm;
|
||
|
|
||
|
// 每次自动开服的数量
|
||
|
public int autoOpenRealmNum;
|
||
|
}
|
||
|
|
||
|
}
|