UnitCache.cs 195 B

123456789101112131415
  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. }
  11. }