/* Sog 游戏基础库 2016 by zouwei */ using System.Collections.Generic; using Sog; namespace Chat { public class PlayerTable : IServerDataObj { //SessionID,player public Dictionary m_sessionsTable; public Dictionary m_uidTable; public PlayerTable() { m_sessionsTable = new Dictionary(); m_uidTable = new Dictionary(); } public override int GetDataType() { return ChatDataObjType.PlayerTable; } } }