using System.Collections.Generic; using Sog; namespace HttpProxyPay { public class PlayerTable : IServerDataObj { public Dictionary m_playerTable; public PlayerTable() { m_playerTable = new Dictionary(); } public override int GetDataType() { return HttpProxyPayDataObjType.PlayerTable; } } }