UnitCache.cs 296 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public interface IUnitCache
  5. {
  6. }
  7. public class UnitCache : Entity, IAwake, IDestroy
  8. {
  9. public string key;
  10. public Dictionary<long, Entity> CacheComponentsDictionary = new Dictionary<long, Entity>();
  11. }
  12. }