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.
30 lines
801 B
30 lines
801 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
using Sog;
|
|
|
|
|
|
namespace Battle
|
|
{
|
|
public class PlayerTable :IServerDataObj
|
|
{
|
|
public Dictionary<long, PlayerOnBattle> m_playerTable;
|
|
public Dictionary<long, int> m_playerCheckFailCount; //校验失败次数
|
|
|
|
//上次重置ILRunTime时间
|
|
public Dictionary<long, long> m_playerLastRestILTime;
|
|
public PlayerTable()
|
|
{
|
|
m_playerTable = new Dictionary<long, PlayerOnBattle>();
|
|
m_playerCheckFailCount = new Dictionary<long, int>();
|
|
m_playerLastRestILTime = new Dictionary<long, long>();
|
|
}
|
|
|
|
public override int GetDataType()
|
|
{
|
|
return BattleDataObjType.PlayerTable;
|
|
}
|
|
}
|
|
}
|
|
|