You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
431 B

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