123456789101112131415 |
- using System.Collections.Generic;
- namespace ET.Server
- {
- [ComponentOf(typeof (Map))]
- public class MapRankComponent: Entity, IAwake, IDestroy, IUpdate
- {
-
- public long NextPushTime { get; set; }
-
- [StaticField]
- public List<RankInfo> LastInfoListProto = new List<RankInfo>();
- }
- }
|