123456789101112131415 |
- using System.Collections.Generic;
- namespace ET.Server
- {
- [ComponentOf(typeof (Map))]
- public class MapRankComponent: Entity, IAwake, IDestroy, IUpdate
- {
- /** 每隔3秒推送排名时间 **/
- public long NextPushTime { get; set; }
- /** 上一次推送列表 **/
- [StaticField]
- public List<RankInfo> LastInfoListProto = new List<RankInfo>();
- }
- }
|