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 380 B

12345678910111213141516
  1. namespace Preparation.Interface
  2. {
  3. public interface ISkill
  4. {
  5. }
  6. public interface IPassiveSkill : ISkill
  7. {
  8. }
  9. public interface IActiveSkill : ISkill
  10. {
  11. public int SkillCD { get; }
  12. public int DurationTime { get; } //技能持续时间
  13. public object ActiveSkillLock { get; }
  14. public bool IsBeingUsed { get; set; }
  15. }
  16. }