MapRankComponent.cs 548 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ComponentOf(typeof (Map))]
  5. public class MapRankComponent: Entity, IAwake, IDestroy
  6. {
  7. /** 排行榜缓存数据 **/
  8. [StaticField]
  9. public List<Struct.BattleReports> RankList = new List<Struct.BattleReports>();
  10. /** 用于客户端显示的数据 [key:阵营, value:[key:排名, value:战报数据]]**/
  11. [StaticField]
  12. public Dictionary<int, Struct.BattleReports> ViewRankList = new Dictionary<int, Struct.BattleReports>();
  13. }
  14. }