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.
31 lines
800 B
31 lines
800 B
1 month ago
|
/*
|
||
|
Sog 游戏基础库
|
||
|
2016 by zouwei
|
||
|
*/
|
||
|
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
|
||
|
namespace Realmlist
|
||
|
{
|
||
|
public class PlayerRealmInfo
|
||
|
{
|
||
|
public int AccountType;
|
||
|
public string AccountID;
|
||
|
|
||
|
//上次选择的gate连接地址,需要考虑多realm的情况,保存的是gate列表的下标,不能直接保存url的原因是实际环境有可能在线换gate的外网ip
|
||
|
public Dictionary<int,int> gateGameServerIDDict = new Dictionary<int, int>();
|
||
|
|
||
|
public Dictionary<int, int> gateChatServerIDDict = new Dictionary<int, int>();
|
||
|
|
||
|
public PlayerRealmInfo(int accountType, string accountID)
|
||
|
{
|
||
|
this.AccountType = accountType;
|
||
|
this.AccountID = accountID;
|
||
|
}
|
||
|
}
|
||
|
}
|