| 1234567891011 |
- using System.Collections.Generic;
- namespace ET
- {
- //缓存其他玩家数据
- //第一次从 摘要服按需拉取缓存,后面由摘要服同步缓存
- public class OtherRoleInfoTempComponent : Entity, IAwake
- {
- public readonly Dictionary<long, OtherRoleInfoProto> otherRoleInfoProto = new Dictionary<long, OtherRoleInfoProto>();
- }
- }
|