/* 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 gateGameServerIDDict = new Dictionary(); public Dictionary gateChatServerIDDict = new Dictionary(); public PlayerRealmInfo(int accountType, string accountID) { this.AccountType = accountType; this.AccountID = accountID; } } }