/* Sog 游戏基础库 2016 by zouwei */ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Sog; namespace Game { public class PlayerTable : IServerDataObj { public Dictionary m_sessionsTable; //uid,player public Dictionary m_uidTable; public List m_uidListForSave; public int m_indexForSave; //每日日志上报缓存 public List m_dailyLogReportPlayers; public PlayerTable() { m_sessionsTable = new Dictionary(); m_uidTable = new Dictionary(); m_uidListForSave = new List(); m_dailyLogReportPlayers = new List(); } public override int GetDataType() { return GameDataObjType.PlayerTable; } } }