ArenaHistoryComponent.cs 329 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. //战斗历史,ArenaRoleHistoryInfo
  5. public class ArenaHistoryComponent : Entity, IAwake
  6. {
  7. //玩家id-> 历史记录列表 (保存20条)
  8. public Dictionary<long, ArenaRoleHistoryInfo> roleHistories = new Dictionary<long, ArenaRoleHistoryInfo>();
  9. }
  10. }