ILifeCycle.cs 392 B

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