UnitCacheComponent.cs 293 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class UnitCacheComponent : Entity, IAwake, IDestroy
  5. {
  6. public Dictionary<string, UnitCache> UnitCaches = new Dictionary<string, UnitCache>();
  7. public List<string> UnitCacheKeyList = new List<string>();
  8. }
  9. }