OtherRoleInfoTempComponent.cs 359 B

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