MapRankComponent.cs 448 B

123456789101112131415
  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. /** 上一次推送得列表 **/
  11. [StaticField]
  12. public List<RankInfo> LastInfoListProto = new List<RankInfo>();
  13. }
  14. }