/* Sog 游戏基础库 2016 by zouwei */ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Sog; namespace Account { public class PlayerTable : IServerDataObj { //sessionid,player public Dictionary m_sessionsTable; public PlayerTable() { m_sessionsTable = new Dictionary(); } public override int GetDataType() { return AccountDataObjType.PlayerTable; } } }