ILifeCycle.cs 425 B

12345678910111213
  1. using System.Collections.Generic;
  2. using Fort23.UTool;
  3. namespace UTool.CustomizeTimeLogic.FxLogic.TimeLineEventinterface
  4. {
  5. public interface ILifeCycle
  6. {
  7. string guidName { get; }
  8. T This<T>();
  9. T GetILifetCycleHitPoint<T>(string hitPoinName, bool isStandType, bool isIgnoreHind)where T : ILifetCycleHitPoint;
  10. T GetMainHotPoin<T>(bool isIgnoreHind)where T : ILifetCycleHitPoint;
  11. }
  12. }