using System.Collections.Generic; namespace ET { //竞技场组件 public class ArenaComponent : Entity, IAwake { //匹配对手缓存 public readonly Dictionary<long, string[]> targetCache = new Dictionary<long, string[]>(); } }