using System.Collections.Generic; namespace ET { [ComponentOf(typeof(Scene))] [ChildType(typeof(UnitCache))] public class UnitCacheComponent : Entity, IAwake, IDestroy { public Dictionary UnitCaches = new Dictionary(); public List UnitCacheKeyList = new List(); } }