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