| 1234567891011 |
- using System.Collections.Generic;
- namespace ET
- {
- public class UnitCacheComponent : Entity, IAwake, IDestroy
- {
- public Dictionary<string, UnitCache> UnitCaches = new Dictionary<string, UnitCache>();
- public List<string> UnitCacheKeyList = new List<string>();
- }
- }
|