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