12345678910111213141516 |
- using System.Collections.Generic;
- namespace ET.Server
- {
- [ComponentOf(typeof (Map))]
- public class MapRankComponent: Entity, IAwake, IDestroy
- {
- /** 排行榜缓存数据 **/
- [StaticField]
- public List<Struct.BattleReports> RankList = new List<Struct.BattleReports>();
- /** 用于客户端显示的数据 [key:阵营, value:[key:排名, value:战报数据]]**/
- [StaticField]
- public Dictionary<int, Struct.BattleReports> ViewRankList = new Dictionary<int, Struct.BattleReports>();
- }
- }
|