You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ISkill.cs 518 B

123456789101112131415161718192021
  1. using GameClass.GameObj;
  2. using Preparation.Utility;
  3. using System.Collections.Generic;
  4. namespace GameClass.Skill
  5. {
  6. public interface ISkill
  7. {
  8. }
  9. public interface IPassiveSkill : ISkill
  10. {
  11. public void SkillEffect(Character player);
  12. }
  13. public interface IActiveSkill : ISkill
  14. {
  15. public int SkillCD { get; }
  16. public int DurationTime { get; } //技能持续时间
  17. public object ActiveSkillLock { get; }
  18. public bool SkillEffect(Character player);
  19. }
  20. }